Some checks failed
Auto-update PR branches / Update open PR branches (push) Has been cancelled
CI / Frontend Static Quality Checks (push) Has been cancelled
CI / Frontend Tests & Coverage (push) Has been cancelled
CI / Rust Tests & Quality Checks (push) Has been cancelled
CI / Linux build verification (push) Has been cancelled
Release (Alpha) / Compute alpha version (push) Has been cancelled
Release (Alpha) / Build release artifacts (push) Has been cancelled
Release (Alpha) / GitHub Release (alpha) (push) Has been cancelled
Release (Alpha) / Update docs and release pages (push) Has been cancelled
Deploy docs / Build VitePress site (push) Has been cancelled
Deploy docs / Deploy to GitHub Pages (push) Has been cancelled
39 lines
1.4 KiB
Markdown
39 lines
1.4 KiB
Markdown
# Files And Media
|
|
|
|
Source: concepts/files-and-media.md
|
|
URL: /concepts/files-and-media
|
|
|
|
# Files And Media
|
|
|
|
Tolaria starts with Markdown notes, but a vault can also contain images, PDFs, media files, whiteboards, and other local files.
|
|
|
|
## Mermaid Diagrams
|
|
|
|
Use Mermaid code blocks when a note needs a diagram that should stay plain text and versionable.
|
|
|
|
````md
|
|
```mermaid
|
|
flowchart LR
|
|
Idea --> Draft --> Review --> Publish
|
|
```
|
|
````
|
|
|
|
Tolaria renders Mermaid diagrams in the editor while keeping the source in Markdown.
|
|
|
|
## Attachments
|
|
|
|
Images pasted into the editor are saved into the vault as normal files. They remain portable and can be opened by other tools.
|
|
|
|
## Previews
|
|
|
|
Tolaria can preview common image files, PDFs, and supported media files in the app. Files without an in-app preview can still be opened in the default system app.
|
|
|
|
Settings control whether PDFs, images, and unsupported files appear in All Notes. Folder browsing still shows files in their folders.
|
|
|
|
## Whiteboards
|
|
|
|
Whiteboards use tldraw in the editor, but their durable representation stays in Markdown. That keeps them inside the vault and versioned by Git with the rest of your notes.
|
|
|
|
## Git Boundary
|
|
|
|
If generated or local-only files are ignored by Git, Tolaria can hide them from notes, search, quick open, and folders. Use this when build artifacts or private local files should not behave like vault content. |