Importing Notes
NuvoPad can import individual .md files or entire directories of Markdown files. YAML frontmatter is parsed automatically, preserving titles, tags, pinned and favorite states from compatible exports.
How to Import
Import a Single File
- Open the command palette with Ctrl+P and search for Import Notes.
- Select a target notebook where the imported notes will be placed.
- Choose Import File and select a
.mdfile from the file picker. - The note appears immediately in the selected notebook.
Batch Import from a Directory
- Open the command palette and search for Import Notes.
- Select a target notebook.
- Choose Import Folder and select a directory. NuvoPad scans the directory for all
.mdfiles (non-recursive — subdirectories are not included). - A progress indicator shows as each file is processed. All imported notes land in the selected notebook.
📝 Note
Frontmatter Parsing
If an imported file contains a YAML frontmatter block, NuvoPad reads the following fields:
| Frontmatter Key | Type | Effect |
|---|---|---|
title | string | Sets the note title. Falls back to filename without extension. |
tags | string[] | Creates tags and assigns them to the note. |
pinned | boolean | Marks the note as pinned in the note list. |
favorite | boolean | Adds the note to the Favorites view. |
created | ISO 8601 string | Preserves the original creation timestamp. |
updated | ISO 8601 string | Preserves the original last-updated timestamp. |
Keys not listed above are ignored. Files without a frontmatter block are imported as plain notes — the filename (minus extension) is used as the title.
File Size Limit
Each imported file must be 10 MiB or smaller. Files exceeding this limit are skipped; a warning is shown in the import results summary.
Duplicate Handling
When an imported note's title matches an existing note in the target notebook, NuvoPad appends a timestamp suffix (for example, Meeting Notes (2026-03-12 14:30)) to avoid overwriting. Re-importing the same file therefore creates a new copy rather than overwriting the original — if you want to update an existing note, edit it directly or delete the duplicate manually.
Supported File Types
Only .md and .markdown files are imported. Other file types in a batch directory are silently skipped.
💡 Tip