mirror of
https://github.com/quartz-community/roam.git
synced 2026-07-22 02:50:27 +00:00
No description
| .github/workflows | ||
| src | ||
| .eslintrc.json | ||
| .gitignore | ||
| .prettierrc | ||
| CHANGELOG.md | ||
| LICENSE | ||
| package-lock.json | ||
| package.json | ||
| README.md | ||
| tsconfig.json | ||
| tsup.config.ts | ||
| vitest.config.ts | ||
@quartz-community/roam
Transforms Roam Research markdown syntax including {{or:}} selectors, TODO/DONE checkboxes, media embeds, and Roam-style highlights.
Installation
npx quartz plugin add github:quartz-community/roam
Usage
// quartz.config.ts
import * as ExternalPlugin from "./.quartz/plugins"
const config: QuartzConfig = {
plugins: {
transformers: [
ExternalPlugin.RoamFlavoredMarkdown(),
],
},
}
Configuration
| Option | Type | Default | Description |
|---|---|---|---|
| orComponent | boolean |
true |
Whether to enable the {{or:}} component. |
| TODOComponent | boolean |
true |
Whether to enable the TODO component. |
| DONEComponent | boolean |
true |
Whether to enable the DONE component. |
| videoComponent | boolean |
true |
Whether to enable the video component. |
| audioComponent | boolean |
true |
Whether to enable the audio component. |
| pdfComponent | boolean |
true |
Whether to enable the PDF component. |
| blockquoteComponent | boolean |
true |
Whether to enable the blockquote component. |
| tableComponent | boolean |
true |
Whether to enable the table component. |
| attributeComponent | boolean |
true |
Whether to enable the attribute component. |
Documentation
See the Quartz documentation for more information.
License
MIT