An elegant text snippet recording tool
Designed for developers to record, organize, and manage various text snippets anytime, anywhere.
Multi-language code blocks with syntax highlighting for 30+ programming languages
Built-in Prettier support for one-click code beautification
Dark/Light themes with full customization options
Edit multiple documents simultaneously
Split content into independent code blocks with different language settings
Rainbow brackets, VSCode-style search, color picker, translation tool, and more
function createDocument() { const doc = new Document(); doc.addCodeBlock('javascript', ` function greeting(name) { return `Hello, ${name}!`; } console.log(greeting('World')); `); return doc; }
// VoidRaft - An elegant text snippet recording tool // Multi-language support | Code formatting | Custom themes // A modern text editor designed for developers