mirror of
https://github.com/alrayyes/wiki.git
synced 2024-11-22 03:26:22 +00:00
892 B
892 B
title | tags | |
---|---|---|
Roam Research Compatibility |
|
Roam Research is a note-taking tool that organizes your knowledge graph in a unique and interconnected way.
Quartz supports transforming the special Markdown syntax from Roam Research (like {{[[components]]}}
and other formatting) into
regular Markdown via the RoamFlavoredMarkdown plugin.
plugins: {
transformers: [
// ...
Plugin.RoamFlavoredMarkdown(),
Plugin.ObsidianFlavoredMarkdown(),
// ...
],
},
Warning
As seen above placement of
Plugin.RoamFlavoredMarkdown()
withinquartz.config.ts
is very important. It must come beforePlugin.ObsidianFlavoredMarkdown()
.
Customization
This functionality is provided by the RoamFlavoredMarkdown plugin. See the plugin page for customization options.