29 lines
892 B
Markdown
29 lines
892 B
Markdown
![]() |
---
|
||
|
title: "Roam Research Compatibility"
|
||
|
tags:
|
||
|
- feature/transformer
|
||
|
---
|
||
|
|
||
|
[Roam Research](https://roamresearch.com) 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.
|
||
|
|
||
|
```typescript title="quartz.config.ts"
|
||
|
plugins: {
|
||
|
transformers: [
|
||
|
// ...
|
||
|
Plugin.RoamFlavoredMarkdown(),
|
||
|
Plugin.ObsidianFlavoredMarkdown(),
|
||
|
// ...
|
||
|
],
|
||
|
},
|
||
|
```
|
||
|
|
||
|
> [!warning]
|
||
|
> As seen above placement of `Plugin.RoamFlavoredMarkdown()` within `quartz.config.ts` is very important. It must come before `Plugin.ObsidianFlavoredMarkdown()`.
|
||
|
|
||
|
## Customization
|
||
|
|
||
|
This functionality is provided by the [[RoamFlavoredMarkdown]] plugin. See the plugin page for customization options.
|