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