Fast, Simple & Free Online Notepad Tool
📝 Smart Note Sheet
Type, paste, style and download your notes.
💡 Tip: Click inside the sheet and press Ctrl+V to paste anything.
Words: 0 | Characters: 0
${heading}
${contentHTML}
`;
const printWindow = window.open('', '_blank');
printWindow.document.write(printContent);
printWindow.document.close();
// Wait a bit before printing to ensure content is loaded
setTimeout(() => {
printWindow.print();
}, 500);
});
// Handle paste events to preserve formatting
[sheetHeading, sheetContent].forEach(element => {
element.addEventListener('paste', function(e) {
e.preventDefault();
const text = (e.clipboardData || window.clipboardData).getData('text/plain');
document.execCommand('insertText', false, text);
});
});