Some checks are pending
Auto-update PR branches / Update open PR branches (push) Waiting to run
CI / Frontend Static Quality Checks (push) Waiting to run
CI / Frontend Tests & Coverage (push) Waiting to run
CI / Rust Tests & Quality Checks (push) Waiting to run
CI / Linux build verification (push) Waiting to run
Deploy docs / Build VitePress site (push) Waiting to run
Deploy docs / Deploy to GitHub Pages (push) Blocked by required conditions
Release (Alpha) / Compute alpha version (push) Waiting to run
Release (Alpha) / Build release artifacts (push) Blocked by required conditions
Release (Alpha) / GitHub Release (alpha) (push) Blocked by required conditions
Release (Alpha) / Update docs and release pages (push) Blocked by required conditions
Source snapshot: 514ab1975951d94342ea38e64101d5a0f1c51c77
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. |