From bb140cbb84f503553c0ab9a8b01c7577d9a2b853 Mon Sep 17 00:00:00 2001 From: Matt Vogel <> Date: Wed, 11 Sep 2024 08:37:06 +0200 Subject: [PATCH] cleanup: Roam Plugin --- docs/features/Roam Research compatibility.md | 6 +++++- quartz.config.ts | 1 - 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/docs/features/Roam Research compatibility.md b/docs/features/Roam Research compatibility.md index 0bd89fb29..aaeda8d77 100644 --- a/docs/features/Roam Research compatibility.md +++ b/docs/features/Roam Research compatibility.md @@ -19,8 +19,12 @@ plugins: { ## Usage -By default, Quartz does not recognize markdown files exported from `Roam Research` as they contain unique identifiers and components specific to Roam. You're 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. +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. ## Configuration This functionality is provided by the [[RoamFlavoredMarkdown]] plugin. See the plugin page for customization options. + +## Note + +As seen above placement of `Plugin.RoamFlavoredMarkdown()` within `quartz.config.ts` is very important. It must come before `Plugin.ObsidianFlavoredMarkdown()`. diff --git a/quartz.config.ts b/quartz.config.ts index 80030f0a3..2cdadb740 100644 --- a/quartz.config.ts +++ b/quartz.config.ts @@ -63,7 +63,6 @@ const config: QuartzConfig = { }, keepBackground: false, }), - Plugin.RoamFlavoredMarkdown(), Plugin.ObsidianFlavoredMarkdown({ enableInHtmlEmbed: false }), Plugin.GitHubFlavoredMarkdown(), Plugin.TableOfContents(),