mirror of
https://gitlab.com/MisterBiggs/brain-quartz.git
synced 2025-07-27 00:31:29 +00:00
.github
content
advanced
features
Latex.md
Mermaid diagrams.md
Obsidian compatibility.md
RSS Feed.md
SPA Routing.md
backlinks.md
callouts.md
darkmode.md
folder and tag listings.md
full-text search.md
graph view.md
index.md
popover previews.md
private pages.md
syntax highlighting.md
table of contents.md
upcoming features.md
wikilinks.md
images
tags
authoring content.md
build.md
configuration.md
hosting.md
index.md
layout.md
migrating from Quartz 3.md
philosophy.md
showcase.md
upgrading.md
quartz
.gitattributes
.gitignore
.prettierignore
.prettierrc
CODE_OF_CONDUCT.md
LICENSE.txt
README.md
globals.d.ts
index.d.ts
package-lock.json
package.json
quartz.config.ts
quartz.layout.ts
tsconfig.json
965 B
965 B
title
title |
---|
Wikilinks |
Wikilinks were pioneered by earlier internet wikis to make it easier to write links across pages without needing to write Markdown or HTML links each time.
Quartz supports Wikilinks by default and these links are resolved by Quartz using Plugin.CrawlLinks
. See the Obsidian Help page on Internal Links for more information on Wikilink syntax.
This is enabled as a part of Obsidian compatibility and can be configured and enabled/disabled from that plugin.
Syntax
[[Path to file]]
: produces a link toPath to file
with the textPath to file
[[Path to file | Here's the title override]]
: produces a link toPath to file
with the textHere's the title override
[[Path to file#Anchor]]
: produces a link to the anchorAnchor
in the filePath to file
Warning
Currently, Quartz does not support block references or note embed syntax.