← Grimoire

Note editor & Markdown

Aligned with the in-app feature guide (featureGuide.js) and editor UI. Notes are stored in SQLite (Vault & data), not as loose Markdown files on disk.

Read and edit mode

Each note tab can toggle read mode vs edit mode.

Markdown affordances

SyntaxBehaviour
#tagsTags with automatic indexing / autocomplete (via the tags pipeline).
[[Note Title]]Wiki-links with automatic backlink tracking; power the Graph.
![[Note Title]]Transclusion — embeds another note’s content in read mode only. Embeds are not tracked as wiki-links the same way as [[links]].

Ordinary Markdown (headings, lists, code blocks, tables, and so on) is rendered via the app’s Markdown pipeline (marked in the editor stack).

Save and indexing

Properties

Notes can carry structured properties used by Kanban and Database views:

See Views — Kanban and Database. Backend: commands/properties.rs.

Templates

Built-in templates (from the feature guide):

plus user-created templates. Apply them from the note-creation flows the app exposes (TemplateModal.svelte).

Bookmarks

Bookmarks pin frequently accessed notes above the folder tree for quick access (stores/bookmarks.svelte.js).

Export

ScopeFormats
Current note (editor or folder list)Markdown, HTML, or PDF (via the print dialog)
BulkSettings → Data → export all notes as Markdown (skips locked notes)

Improve and send selection to chat

See also