Markdown
How to write documents
Introduction
Fumadocs provides many useful extensions to MDX, a markup language. Here is a brief introduction to the default MDX syntax of Fumadocs UI.
MDX is not the only supported format of Fumadocs. In fact, you can use any renderers such as next-mdx-remote
or CMS.
Markdown
We use GFM (GitHub Flavored Markdown), a superset of Markdown (CommonMark). See GFM Specification.
Images
Images are automatically optimized for next/image
.
Auto Links
Internal links use the next/link
component to allow prefetching and avoid hard-reload.
External links will get the default rel="noreferrer noopener" target="_blank"
attributes for security.
MDX
MDX is a superset of Markdown, with support of JSX syntax. It allows you to import components, and use them right in the document, or even export values.
see MDX Syntax to learn more.
Cards
Useful for adding links, it is included by default.
Fetching, Caching, and Revalidating
Learn more about caching in Next.js
href is optional
fetch
in Next.js.Icon
You can specify an icon to cards.
"Further Reading" Section
You can do something like:
This will show the other pages in the same folder as cards.
Layout Links
Sidebar Links
Callouts
Useful for adding tips/warnings, it is included by default.
Title
Types
You can specify the type of callout.
info
(default)warn
error
Title
Hello World
Headings
An anchor is automatically applied to each heading, it sanitizes invalid characters like spaces. (e.g. Hello World
to hello-world
)
TOC Settings
The table of contents (TOC) will be generated based on headings, you can also customise the effects of headings:
Custom Anchor
You can add [#slug]
to customise heading anchors.
You can also chain it with TOC settings like:
To link people to a specific heading, add the heading id to hash fragment: /page#my-heading-id
.
Frontmatter
We support YAML frontmatter. It is a way to specify common information of the document (e.g. title). Place it at the top of document.
See Page Conventions for a list of properties available for frontmatter.
Codeblock
Syntax Highlighting is supported by default using Rehype Code.
You can add a title to the codeblock.
Highlight Lines
You can highlight specific lines by adding [!code highlight]
.
Highlight Words
You can highlight a specific word by adding [!code word:<match>]
.
Diffs
Tab Groups
You can use code blocks with the <Tab />
component.
Note that you can add MDX components instead of importing them in MDX files.
Using Typescript Twoslash
Write Typescript codeblocks with hover type information and detected types errors.
Not enabled by default. See Twoslash.
Optional
Some optional plugins you can enable.
Math Equations
Write math equations with TeX.
To enable, see Math Integration.
Package Install
Generate code blocks for installing packages via package managers (JS/Node.js).
To enable, see Remark Install.
More
You can see a list of plugins provided by Fumadocs.
How is this guide?