NNuartz

Wikilinks

2026-03-01Updated 2026-03-192 min read·

Wikilink syntax in nuartz — link between notes using [[double brackets]].

Wikilinks let you link between notes using [[double brackets]], just like in Obsidian. nuartz resolves these links at build time and renders them as clickable links with graph view connections.

Syntax

[[docs/getting-started]]

Renders as: docs/getting-started

The link text defaults to the note's title. The path is relative to the content/ directory.

Custom Display Text

[[docs/getting-started|Get Started Guide]]

Renders as: Get Started Guide

Use the pipe | to set custom link text.

Heading Anchor

[[docs/authoring-content#Frontmatter]]

Renders as: docs/authoring-content > Frontmatter

Link directly to a specific heading within a note.

Combined

[[docs/authoring-content#Frontmatter|See frontmatter docs]]

Renders as: See frontmatter docs

Image Embeds

Embed images using the ! prefix:

![[my-image.png]]

With dimensions:

![[my-image.png|400x300]]

How It Works

nuartz resolves wikilinks during the Markdown-to-HTML transformation:

  1. The parser finds [[...]] patterns in your Markdown
  2. It looks up the target file in the content directory
  3. It generates a proper <a> link with the resolved URL
  4. The link is registered for graph view and backlinks
Obsidian Compatible

nuartz uses the same wikilink syntax as Obsidian, so your notes work in both environments without changes.

Linked from (10)