☰ Contents

Markdown reference

πŸ“š Reference

Which Markdown elements Atlas renders and what they look like.

Headings

## and ### appear in the navigation on the right. #### stays body-text structure.

Text

Bold, italic, inline code and links work as everywhere.

Lists

  • Item one
  • Item two
    • Nested
  1. First step
  2. Second step

Quote

A quote gets the foundation’s left bar.

Code

export const greet = (name: string) => `Hello, ${name}!`;

Table

Column AColumn B
Value 1Value 2

Callout (HTML)

Markdown has no callouts – the foundation does. A small HTML snippet is enough:

<div class="nk-callout"><span class="c-icon">πŸ’‘</span><div>Text</div></div>
πŸ’‘
This is what the result looks like.

Divider


Done.