Write documentation pages using standard Markdown syntax and Retype-specific extensions.
Markdown .md pages are plain text documents with a simple, human-readable syntax designed to make writing for the internet easier. No special software is required — any basic text editor will do. Save the file with a .md extension and Retype handles the rest.
A minimal page requires only a title and some content:
# Page title hereThis is a paragraph.
Build on that foundation with formatting, images, and lists:
# Getting StartedWelcome to **my project**. This guide covers the _basics_.## Prerequisites- Node.js 18 or later- A text editor## Installation1. Clone the repository2. Run `npm install`3. Run `retype start`
1
Create a Markdown file
Create a readme.md file in your project root.
2
Add a title
Add a # Title as the first heading in the file.
3
Start writing
Add your content below the title using standard Markdown.
In addition to Markdown syntax, Retype includes a full library of components for enriching your documentation — including badges, cards, panels, code groups, and more.See the Retype component reference for the complete list.