Titles and subtitles
Use## for section headings and ### for subsections. Each heading automatically generates an anchor link and appears in the right-hand table of contents.
# (h1) inside page content — the page title in frontmatter already renders as the h1.
Text formatting
Wrap text with the following syntax to apply inline formatting:| Style | Syntax | Output |
|---|---|---|
| Bold | **bold text** | bold text |
| Italic | _italic text_ | italic text |
| Strikethrough | ~strikethrough text~ | |
| Superscript | <sup>superscript</sup> | textsup |
| Subscript | <sub>subscript</sub> | textsub |
**_bold and italic_** produces bold and italic text.
Links
Use standard Markdown link syntax for both internal and external links./. Do not include the .mdx file extension.
Blockquotes
Prefix a line with> to render it as a blockquote:
Dorothy followed her through many of the beautiful rooms in her castle.
LaTeX
Wrap LaTeX expressions in a<Latex> tag to render mathematical equations:
HTML in Markdown
Mintlify supports HTML tags inside Markdown, which gives you extra formatting flexibility when standard Markdown syntax isn’t enough. For example, you can use<sup> and <sub> for superscript and subscript, or <br /> for explicit line breaks.