The Trans Directory
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

docs: fix roam research docs

+11 -13
+7 -9
docs/features/Roam Research compatibility.md
··· 4 4 - feature/transformer 5 5 --- 6 6 7 - [Roam Research](https://roamresearch.com) is a note-taking tool that organizes your knowledge graph in a unique and interconnected way. Since the markdown exported from Roam Research includes specific `{{[[components]]}}` and formatting that may not be directly compatible with Quartz, we need to transform it. This is achieved with the [[RoamFlavoredMarkdown]] plugin. 7 + [Roam Research](https://roamresearch.com) is a note-taking tool that organizes your knowledge graph in a unique and interconnected way. 8 + 9 + Quartz supports transforming the special Markdown syntax from Roam Research (like `{{[[components]]}}` and other formatting) into 10 + regular Markdown via the [[RoamFlavoredMarkdown]] plugin. 8 11 9 12 ```typescript title="quartz.config.ts" 10 13 plugins: { ··· 17 20 }, 18 21 ``` 19 22 20 - ## Usage 23 + > [!warning] 24 + > As seen above placement of `Plugin.RoamFlavoredMarkdown()` within `quartz.config.ts` is very important. It must come before `Plugin.ObsidianFlavoredMarkdown()`. 21 25 22 - By default, Quartz does not recognize markdown files exported from `Roam Research` as they contain unique identifiers and components specific to Roam. You are responsible for exporting your `Roam Research` notes as markdown files and then using this transformer to make them compatible with Quartz. This process ensures that your knowledge graph is seamlessly integrated into your static site, maintaining the rich interconnections between your notes. 23 - 24 - ## Configuration 26 + ## Customization 25 27 26 28 This functionality is provided by the [[RoamFlavoredMarkdown]] plugin. See the plugin page for customization options. 27 - 28 - ## Note 29 - 30 - As seen above placement of `Plugin.RoamFlavoredMarkdown()` within `quartz.config.ts` is very important. It must come before `Plugin.ObsidianFlavoredMarkdown()`.
+4 -4
docs/plugins/RoamFlavoredMarkdown.md
··· 11 11 12 12 This plugin accepts the following configuration options: 13 13 14 - - `orComponent`: If `true` (default), converts Roam `{{ or:ONE|TWO|THREE }}` shortcodes into html Dropdown options. 15 - - `TODOComponent`: If `true` (default), converts Roam `{{[[TODO]]}}` shortcodes into html check boxes. 16 - - `DONEComponent`: If `true` (default), converts Roam `{{[[DONE]]}}` shortcodes into checked html check boxes. 14 + - `orComponent`: If `true` (default), converts Roam `{{ or:ONE|TWO|THREE }}` shortcodes into HTML Dropdown options. 15 + - `TODOComponent`: If `true` (default), converts Roam `{{[[TODO]]}}` shortcodes into HTML check boxes. 16 + - `DONEComponent`: If `true` (default), converts Roam `{{[[DONE]]}}` shortcodes into checked HTML check boxes. 17 17 - `videoComponent`: If `true` (default), converts Roam `{{[[video]]:URL}}` shortcodes into embeded HTML video. 18 18 - `audioComponent`: If `true` (default), converts Roam `{{[[audio]]:URL}}` shortcodes into embeded HTML audio. 19 19 - `pdfComponent`: If `true` (default), converts Roam `{{[[pdf]]:URL}}` shortcodes into embeded HTML PDF viewer. 20 - - `blockquoteComponent`: If `true` (default), converts Roam `{{[[>]]}}` shortcodes into quartz blockquotes. 20 + - `blockquoteComponent`: If `true` (default), converts Roam `{{[[>]]}}` shortcodes into Quartz blockquotes. 21 21 22 22 ## API 23 23