1
0
mirror of https://gitlab.com/MisterBiggs/brain-quartz.git synced 2025-07-25 15:51:34 +00:00
Files
.github
content
docs
advanced
features
Latex.md
Mermaid diagrams.md
Obsidian compatibility.md
OxHugo compatibility.md
RSS Feed.md
SPA Routing.md
backlinks.md
callouts.md
darkmode.md
explorer.md
folder and tag listings.md
full-text search.md
graph view.md
index.md
popover previews.md
private pages.md
recent notes.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
.npmrc
.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
brain-quartz/docs/features/wikilinks.md
Jacky Zhao cce389c81d feat: note transclusion ()
* basic transclude

* feat: note transclusion
2023-09-13 11:28:53 -07:00

1020 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 to Path to file.md (or Path-to-file.md) with the text Path to file
  • [[Path to file | Here's the title override]]: produces a link to Path to file.md with the text Here's the title override
  • [[Path to file#Anchor]]: produces a link to the anchor Anchor in the file Path to file.md
  • [[Path to file#^block-ref]]: produces a link to the specific block block-ref in the file Path to file.md