Blog Home · Template ⌘K
×

Paragraph

Regular text block

H1

Heading 1

Large heading

H2

Heading 2

Medium heading

H3

Heading 3

Small heading

"

Quote

Highlighted quote block

</>

Code

Code block with syntax highlighting

Bullet List

Create a bulleted list

🖼

Image

Upload or embed an image

🔘

Button

Interactive button element

Divider

Horizontal line separator

`; const blob = new Blob([fullHTML], { type: 'text/html' }); const url = URL.createObjectURL(blob); const a = document.createElement('a'); a.href = url; a.download = 'editor-as-built.html'; a.click(); URL.revokeObjectURL(url); } // Close export menu when clicking outside document.addEventListener('click', (e) => { if (!e.target.closest('.export-dropdown')) { hideExportMenu(); } });