Jason Crawford2 downloadsOpen and edit TOML files with syntax highlighting and parse diagnostics.
TOML Editor is an Obsidian plugin that opens .toml files in a native Obsidian pane instead of launching an external editor.
.toml files.Once the plugin is enabled, open any .toml file from Obsidian's file explorer. TOML Editor will open the file in an Obsidian tab with line numbers, syntax highlighting, autosave, and parse diagnostics.
The status bar above the editor shows whether the current document is valid TOML. Parse errors are also shown inline in the editor.
main.js, manifest.json, and styles.css from the latest release.toml-editor inside your vault's .obsidian/plugins/ directory..obsidian/plugins/toml-editor/.Install dependencies:
npm install
Run tests:
npm test
Typecheck:
npm run typecheck
Build:
npm run build
See docs/community-plugin-submission.md for the release and Obsidian directory submission checklist.
Obsidian community plugin releases must include main.js, manifest.json, and styles.css as individual release assets. The release name and git tag should exactly match the version in manifest.json, without a v prefix.
For version 0.1.0:
git tag 0.1.0
git push origin 0.1.0
The release workflow builds and publishes the required assets automatically.
MIT