Content authoring

In Nue, every content piece is authored with a specialized Markdown dialect, great for rich, interactive websites. This syntax extends standard Markdown with features that enable dynamic, structured pages.

Sections

Modern web content often requires sophisticated layouts, but manually wrapping content in divs or custom HTML is messy and hard to maintain. Nue solves this by analyzing your content structure and generating semantic HTML sections.

You can enable automatic sectioning by adding sections: true to your page configuration. When enabled, Nue treats each level 2 heading (##) as the start of a new section:

---
sections: true
---



The first section content...



The second section content...



The third section content...

This creates semantic HTML sections:

<article>
  <section>
    <h2>Introduction</h2>
    <p>The first section content...</p>
  </section>

  <section>
    <h2>Key features</h2>
    <p>The second section content...</p>
  </section>

  <section>
    <h2>Technical details</h2>
    <p>The third section content...</p>
  </section>
</article>

Section classes

You can assign classes to sections for styling purposes by providing an array:

---
sections: [hero, features, details]
---

This generates sections with corresponding class names:

<article>
  <section class="hero">...</section>
  <section class="features">...</section>
  <section class="details">...</section>
</article>

Manual sections

For more granular control, you can use triple dashes (---) to explicitly create section breaks:

First section content...

---

Second section content...

---

Third section content...

This is particularly useful for landing pages or marketing content where visual sections may not align with heading structure.

Blocks, grids, and flex layouts

Blocks are Nue's system for creating rich layouts without HTML markup. They generate clean HTML that your CSS can style:

Basic blocks

A block is created with square brackets and a class name:

[.]

  This is a highlighted note with a title

This generates semantic HTML:

<div class="note">
  <h3>Important</h3>
  <p>This is a highlighted note with a title</p>
</div>

Grid layouts

Create grid layouts using headings as separators:

[.]

  Description of the first feature


  Description of the second feature


  Description of the third feature

This generates:

<div class="grid">
  <div>
    <h3>First feature</h3>
    <p>Description of the first feature</p>
  </div>
  <div>
    <h3>Second feature</h3>
    <p>Description of the second feature</p>
  </div>
  <div>
    <h3>Third feature</h3>
    <p>Description of the third feature</p>
  </div>
</div>

You can also create more flexible grid layouts using triple dash as separator:

[.]
  [ feature-1.jpg]
  First feature description

  ---

  [ feature-2.jpg]
  Second feature description

  ---

  [ feature-3.jpg]
  Third feature description

This generates:

<div class="grid">
  <div>
    <figure>
      <img src="feature-1.jpg" loading="lazy">
    </figure>
    <p>First feature description</p>
  </div>
  <div>
    <figure>
      <img src="feature-2.jpg" loading="lazy">
    </figure>
    <p>Second feature description</p>
  </div>
  <div>
    <figure>
      <img src="feature-3.jpg" loading="lazy">
    </figure>
    <p>Third feature description</p>
  </div>
</div>

The layout is handled entirely through CSS:

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

Stack layouts

Stack layouts vertically arrange elements with consistent spacing:

[.]

  Focus on systematic design


  Built for performance


  Pure content structure

The generated HTML:

<div class="stack">
  <div>
    <h3>Design</h3>
    <p>Focus on systematic design</p>
  </div>
  <div>
    <h3>Engineering</h3>
    <p>Built for performance</p>
  </div>
  <div>
    <h3>Content</h3>
    <p>Pure content structure</p>
  </div>
</div>

With CSS handling the vertical spacing:

.stack {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

Nested blocks

Blocks can be nested for more complex layouts:

[.]

  Feature description

  [.]

    First sub-feature


    Second sub-feature

Generates:

<div class="feature">
  <h2>Main feature</h2>
  <p>Feature description</p>

  <div class="grid">
    <div>
      <h3>Sub-feature one</h3>
      <p>First sub-feature</p>
    </div>
    <div>
      <h3>Sub-feature two</h3>
      <p>Second sub-feature</p>
    </div>
  </div>
</div>

The parser maintains this clean structure while your CSS handles all visual presentation.

Basic Markdown support

Nue fully supports standard Markdown, providing a familiar foundation for content creation. While the syntax is straightforward, Nue's implementation ensures your Markdown content remains clean and semantic.

Common formatting

For example:



This paragraph has **bold** and *italic* text, plus a `code snippet`.



- First list item
- Second list item
  - Nested item
  - Another nested item

1. Ordered list
2. Second ordered item

> This is a blockquote that can contain multiple paragraphs
> and *formatting*.

[Link to docs](https://docs.example.com)

Code blocks

Fenced code blocks use triple backticks, with optional language hints for syntax highlighting:

```js
function example() {
  return "Hello world"
}
```

Why this matters

While these Markdown features are standard, Nue's implementation focuses on generating clean, semantic HTML that serves as a foundation for your design system. There's no framework-specific markup or special processing — just pure content that directly expresses meaning.

For complete Markdown syntax reference, see the original Markdown specification. Nue builds on this foundation with powerful extensions covered in the following sections.

Extended Markdown syntax

Nue builds on standard Markdown by supporting common extensions and adding powerful features that enhance content creation while maintaining purity.

Standard extensions

Standard Markdown lacks certain features needed for complex content. Nue includes the most commonly used extensions out of the box.

Tables help present structured data in a readable format:

  Feature   | Description           | Status  |
-----------|----------------------|---------|
  Grid      | Layout system        | Done    |
  Sections  | Document structure   | Done    |
  Themes    | Design systems       | Soon    |

Footnotes allow you to add references or asides without disrupting content flow:

Here's a statement that needs clarification[^1].

[^1]: This is the footnote content providing more detail.

Enhanced formatting

Nue provides additional formatting options that maintain semantic meaning while providing more precise control:

MarkdownHTMLExample
I'm **bold**<strong>bold</strong>I'm bold
I'm __bold__<strong>bold</strong>I'm bold
I'm •bold•<b>bold</b>I'm bold
I'm *italic*<em>italic</em>I'm italic
I'm _italic_<em>italic</em>I'm italic
`I'm `code``<code>code</code>I'm code
I'm ~striked~<s>striked</s>I'm striked
I'm "quoted"<q>quoted</q>I'm quoted
I'm |marked|<mark>marked</mark>I'm marked

Variables

Embed dynamic values directly in your content:

Current version: { site.version }
Last updated: { page.date }
Author: { meta.author }

This keeps content dynamic without resorting to template languages or JavaScript.

Heading extensions

Add IDs and classes to headings for linking and styling:



This enables direct linking to sections while keeping CSS classes separate from content.

Enhanced footnotes

Reference entire phrases instead of just numbers:

[Separation of Concerns][^soc] is fundamental to Nue.
Progressive Enhancement[^pe] ensures accessibility.

[^soc]: Keeping content, structure and style separate
[^pe]: Building from core functionality up

Why these extensions matter

Each extension serves a specific purpose in creating better content:

Together, they enable sophisticated content creation while maintaining the purity and portability of your Markdown files.