No description
Find a file
2026-06-03 15:29:03 +02:00
.github/workflows build: bundle dependencies and ship pre-built dist 2026-04-27 21:38:09 +02:00
dist chore(deps): update @quartz-community/utils 2026-06-03 15:29:03 +02:00
src feat: add support for jxl format 2026-05-27 01:57:19 +02:00
test feat: add support for jxl format 2026-05-27 01:57:19 +02:00
types fix: centralize type declarations and add missing dependencies 2026-03-16 18:54:32 +01:00
.eslintrc.json fix: centralize type declarations and add missing dependencies 2026-03-16 18:54:32 +01:00
.gitignore chore: commit dist/ and remove prepare script 2026-03-14 22:00:30 +01:00
.prettierignore fix: centralize type declarations and add missing dependencies 2026-03-16 18:54:32 +01:00
.prettierrc Initial commit 2026-02-13 21:42:00 +01:00
CHANGELOG.md feat!: remove disableBrokenWikilinks option 2026-04-16 22:18:49 +02:00
LICENSE Initial commit 2026-02-13 21:42:00 +01:00
package-lock.json chore(deps): update @quartz-community/utils 2026-06-03 15:29:03 +02:00
package.json chore: updated rehype dependency 2026-05-26 17:48:58 +02:00
README.md fix: align video/audio embed extensions across both embed paths 2026-05-24 16:12:53 +02:00
tsconfig.build.json fix: use separate tsconfig for DTS build to avoid vitest dependency 2026-03-22 13:12:01 +01:00
tsconfig.json feat: extract Obsidian Flavored Markdown transformer from Quartz core 2026-02-13 22:31:29 +01:00
tsup.config.ts build: bundle dependencies and ship pre-built dist 2026-04-27 21:38:09 +02:00
vitest.config.ts fix: add passWithNoTests to vitest config 2026-03-09 03:21:30 +01:00

@quartz-community/obsidian-flavored-markdown

Transforms Obsidian-specific markdown syntax including wikilinks, callouts, highlights, mermaid diagrams, tags, and media embeds.

Installation

npx quartz plugin add github:quartz-community/obsidian-flavored-markdown

Usage

plugins:
  - source: github:quartz-community/obsidian-flavored-markdown
    enabled: true
    options:
      enableInHtmlEmbed: false
      enableCheckbox: true

For advanced use cases, you can override in TypeScript:

import * as ExternalPlugin from "./.quartz/plugins";

ExternalPlugin.ObsidianFlavoredMarkdown({
  enableInHtmlEmbed: false,
  enableCheckbox: true,
});

Configuration

Option Type Default Description
comments boolean true Whether to parse Obsidian-style comments.
highlight boolean true Whether to parse Obsidian-style highlights.
wikilinks boolean true Whether to parse wikilinks.
callouts boolean true Whether to parse callouts.
mermaid boolean true Whether to parse Mermaid diagrams.
parseTags boolean true Whether to parse tags.
parseBlockReferences boolean true Whether to parse block references.
enableInHtmlEmbed boolean false Whether to enable parsing in HTML embeds.
enableYouTubeEmbed boolean true Whether to enable YouTube embeds.
enableVideoEmbed boolean true Whether to enable video embeds.
enableCheckbox boolean false Whether to enable checkboxes.

Documentation

See the Quartz documentation for more information.

License

MIT