1
0
mirror of https://gitlab.com/MisterBiggs/brain-quartz.git synced 2025-07-27 08:41:34 +00:00
Files
.github
docs
advanced
features
images
plugins
AliasRedirects.md
Assets.md
CNAME.md
Citations.md
ComponentResources.md
ContentIndex.md
ContentPage.md
CrawlLinks.md
CreatedModifiedDate.md
CustomOgImages.md
Description.md
ExplicitPublish.md
Favicon.md
FolderPage.md
Frontmatter.md
GitHubFlavoredMarkdown.md
HardLineBreaks.md
Latex.md
NotFoundPage.md
ObsidianFlavoredMarkdown.md
OxHugoFlavoredMarkdown.md
RemoveDrafts.md
RoamFlavoredMarkdown.md
Static.md
SyntaxHighlighting.md
TableOfContents.md
TagPage.md
index.md
tags
authoring content.md
build.md
configuration.md
hosting.md
index.md
layout-components.md
layout.md
migrating from Quartz 3.md
philosophy.md
setting up your GitHub repository.md
showcase.md
upgrading.md
quartz
.gitattributes
.gitignore
.gitlab-ci.yml
.gitmodules
.node-version
.npmrc
.prettierignore
.prettierrc
CODE_OF_CONDUCT.md
Dockerfile
LICENSE.txt
README.md
bun.lock
globals.d.ts
index.d.ts
package-lock.json
package.json
quartz.config.ts
quartz.layout.ts
tsconfig.json
brain-quartz/docs/plugins/ObsidianFlavoredMarkdown.md
Keisuke ANDO 51b43a2115 feat(links): added ofm option to style unresolved or broken links differently ()
* feat: add option to disable broken wikilinks

* fix(style): update hover color for broken links and introduce new class

* feat: add "disableBrokenWikilinks" option to ObsidianFlavoredMarkdown
2025-05-27 21:26:17 +02:00

1.9 KiB

title, tags
title tags
ObsidianFlavoredMarkdown
plugin/transformer

This plugin provides support for Obsidian compatibility.

Note

For information on how to add, remove or configure plugins, see the configuration#Plugins page.

This plugin accepts the following configuration options:

  • comments: If true (default), enables parsing of %% style Obsidian comment blocks.
  • highlight: If true (default), enables parsing of == style highlights within content.
  • wikilinks:If true (default), turns wikilinks into regular links.
  • callouts: If true (default), adds support for callouts blocks for emphasizing content.
  • mermaid: If true (default), enables Mermaid diagrams rendering within Markdown files.
  • parseTags: If true (default), parses and links tags within the content.
  • parseArrows: If true (default), transforms arrow symbols into their HTML character equivalents.
  • parseBlockReferences: If true (default), handles block references, linking to specific content blocks.
  • enableInHtmlEmbed: If true, allows embedding of content directly within HTML. Defaults to false.
  • enableYouTubeEmbed: If true (default), enables the embedding of YouTube videos and playlists using external image Markdown syntax.
  • enableVideoEmbed: If true (default), enables the embedding of video files.
  • enableCheckbox: If true, adds support for interactive checkboxes in content. Defaults to false.
  • disableBrokenWikilinks: If true, replaces links to non-existent notes with a dimmed, disabled link. Defaults to false.

Warning

Don't remove this plugin if you're using Obsidian compatibility to author the content!

API