Exporting Notes
NuvoPad can export notes in multiple formats. Markdown export is available on the Free tier; HTML, TXT, JSON, and PDF require Pro.
Supported Export Formats
| Format | Extension | Tier | Notes |
|---|---|---|---|
| Markdown | .md | Free | Includes YAML frontmatter with title, tags, pinned, favorite, created, and updated dates |
| Copy as Markdown | Clipboard | Free | Copies raw Markdown to clipboard without a file dialog |
| Copy as Plain Text | Clipboard | Free | Copies content stripped of Markdown syntax |
| HTML | .html | Pro | Rendered HTML output |
| Plain Text | .txt | Pro | Plain text content without Markdown formatting |
| JSON | .json | Pro | Full note metadata + content as a JSON object |
via system print | Pro | Opens the OS print dialog pre-configured for PDF output |
Pro Feature
Exporting as HTML, Plain Text, JSON, or PDF requires the NuvoPad Pro upgrade ($9.99 one-time payment). Free users will see an upgrade prompt when accessing this feature.
Exporting a Single Note
With a note open in the editor:
- Click the overflow menu (⋯) in the editor toolbar, or open the command palette and search for Export Note.
- Select the target format from the export menu.
- A file-save dialog opens (except for clipboard and PDF options). Choose a destination folder and filename.
- The note is exported immediately.
Copying to Clipboard
To copy the note content without creating a file, use Copy as Markdown or Copy as Plain Text from the export menu. These are available to all users and copy directly to the clipboard.
Exporting a Notebook
To export all notes in a notebook as individual .md files:
- Right-click the notebook in the sidebar and select Export Notebook.
- Choose a destination directory.
- Each note is exported as an individual file, with the note title as the filename.
💡 Tip
Markdown Frontmatter
Exported Markdown files include a YAML frontmatter block at the top:
--- title: "My Note Title" created: "2026-03-01T10:00:00Z" updated: "2026-03-12T14:30:00Z" pinned: false favorite: true tags: ["meeting", "work"] ---
This frontmatter is also parsed on import, so round-tripping notes (export then re-import) preserves all metadata.