How to write in Markdown
This page describes how we use Markdown to write documentation on MDN Web Docs. We have chosen GitHub-Flavored Markdown (GFM) as a baseline, and added some extensions to support some of the things we need to do on MDN that aren't readily supported in GFM.
Baseline: GitHub-Flavored Markdown
The baseline for MDN Markdown is GitHub-Flavored Markdown (GFM): https://github.github.com/gfm/. This means that you can refer to the GFM specification for anything not explicitly specified in this page. GFM in turn is a superset of CommonMark (https://spec.commonmark.org/).
Links
The GFM specification defines two basic types of links:
- inline links, in which the destination is given immediately after the link text
- reference links, in which the destination is defined elsewhere in the document.
On MDN we allow only inline links.
This is the correct way to write GFM links on MDN:
md
[Macarons](https://en.wikipedia.org/wiki/Macaron) are delicious but tricky to make.
This is an incorrect way to write links on MDN:
md
[Macarons][macaron] are delicious but tricky to make.
[macaron]: https://en.wikipedia.org/wiki/Macaron
Example code blocks
In GFM and CommonMark, authors can use "code fences" to demarcate <pre>
blocks. The opening code fence may be followed by some text that is called the "info string". The specification states the following:
The first word of the info string is typically used to specify the language of the code sample, and rendered in the class attribute of the code tag.
It's permissible for the info string to contain multiple words, like:
md
```fee fi fo fum
// some example code
```
On MDN, writers will use code fences for example code blocks. They must specify the language of the code sample using the first word of the info string, and this will be used to provide syntax highlighting for the block. The following words are supported:
- Programming Languages
- JavaScript
js
- JavaScriptts
- TypeScriptjsx
- React JSXtsx
- React TSX
- C-like
c
- Ccpp
- C++cs
- C#java
- Javaclike
- C-like (for any C-like language not defined)
- Other
python
- Pythonphp
- PHPrust
- Rustglsl
- GLSL (OpenGL Shaders)wasm
- WebAssembly
- JavaScript
- Styling
css
- CSSscss
- Sass (SCSS)less
- Less
- Markup
html
- HTMLsvg
- SVGxml
- XMLmathml
- MathMLmd
- Markdown
- Command Prompts
sh
- Bash/Shellbatch
- Batch (Windows Shell)powershell
- PowerShell
- Configuration/Data Files
json
- JSONini
- INIyaml
- YAMLtoml
- TOMLsql
- SQL Databasediff
- Diff fileignore
- Gitignore file
- Other
http
- HTTP headerspug
- Pug templates (which may be used by Express)regex
- Regexuri
- URIs and URLs
For example:
md
```js
const greeting = "I will get JavaScript syntax highlighting";
```
If the highlighting that you wish to use is not listed above you should markup the code block as plain
.
Additional languages may be requested in the process discussed on GitHub.
Suppressing linting
Writers can add a -nolint
suffix to any of the language identifiers:
```html-nolint <p> I will not be linted. </p> ```
Code blocks like this will get appropriate syntax highlighting and will be recognized by the live sample system, but will be ignored by linters or automatic formatters like Prettier. Authors should use this suffix for showing invalid code or alternative formatting that linters or formatters should not fix.
Additional words
Writers will be able to supply any one of the following additional words, which must come after the language word:
example-good
: style this example as a good example (one to follow)example-bad
: style this example as a bad example (one to avoid)hidden
: don't render this code block in the page. This is for use in live samples.
For example:
md
```js example-good
const greeting = "I'm a good example";
```
```js example-bad
const greeting = "I'm a bad example";
```
These will be rendered as:
js
const greeting = "I'm a good example";
js
const greeting = "I'm a bad example";
Discussion reference
This issue was resolved in:
Notes, warnings, and callouts
Sometimes writers want to call special attention to a piece of content. To do this, they will use a GFM blockquote with a special first paragraph. There are three types of these: notes, warnings, and callouts.
- To add a note, create a GFM blockquote whose first paragraph starts with
**Note:**
. - To add a warning, create a GFM blockquote whose first paragraph starts with
**Warning:**
. - To add a callout, create a GFM blockquote whose first paragraph starts with
**Callout:**
.
Notes and warnings will render the Note: or Warning: text in the output, while callouts will not. This makes callouts a good choice when an author wants to provide a custom title.
Processing of the markup works on the AST it produces, not on the exact characters provided. This means that providing <strong>Note:</strong>
will also generate a note. However, the Markdown syntax is required as a matter of style.
Multiple lines are produced by an empty block quote line in the same way as normal paragraphs. Further, multiple lines without a space are also treated like normal Markdown lines, and concatenated.
The blockquote can contain code blocks or other block elements.
Because the text "Note:" or "Warning:" also appears in the rendered output, it has to be sensitive to translations. In practice this means that every locale supported by MDN must supply its own translation of these strings, and the platform must recognize them as indicating that the construct needs special treatment.
Examples
Note
md
> **Note:** This is how you write a note.
>
> It can have multiple lines.
This will produce the following HTML:
html
<div class="notecard note">
<p><strong>Note:</strong> This is how you write a note.</p>
<p>It can have multiple lines.</p>
</div>
This HTML will be rendered as a highlighted box:
Note: This is how you write a note.
It can have multiple lines.
Warnings
md
> **Warning:** This is how you write a warning.
>
> It can have multiple paragraphs.
This will produce the following HTML:
html
<div class="notecard warning">
<p><strong>Warning:</strong> This is how you write a warning.</p>
<p>It can have multiple paragraphs.</p>
</div>
This HTML will be rendered as a highlighted box:
Warning: This is how you write a warning.
It can have multiple paragraphs.
Callouts
md
> **Callout:** **This is how you write a callout.**
>
> It can have multiple paragraphs.
This will produce the following HTML:
html
<div class="callout">
<p><strong>This is how you write a callout.</strong></p>
<p>It can have multiple paragraphs.</p>
</div>
This HTML will be rendered as a highlighted box:
This is how you write a callout.
It can have multiple paragraphs.
Translated warning
For example, if we want to use "Warnung" for "Warning" in German, then in German pages we would write:
md
> **Warnung:** So schreibt man eine Warnung.
And this will produce:
html
<div class="notecard warning">
<p><strong>Warnung:</strong> So schreibt man eine Warnung.</p>
</div>
Note containing a code block
This example contains a code block.
md
> **Note:** This is how you write a note.
>
> It can contain code blocks.
>
> ```js
> const s = "I'm in a code block";
> ```
>
> Like that.
This will produce the following HTML:
html
<div class="notecard note">
<p><strong>Note:</strong> This is how you write a note.</p>
<p>It can contain code blocks.</p>
<pre class="brush: js">const s = "I'm in a code block";</pre>
<p>Like that.</p>
</div>
This HTML will be rendered as with a code block:
Note: This is how you write a note.
It can contain code blocks.
js
const s = "I'm in a code block";
Like that.
Discussion reference
This issue was resolved in https://github.com/mdn/content/issues/3483.
Definition lists
To create definition lists in MDN authors write a modified form of a GFM unordered list (<ul>
). In this form:
- The GFM
<ul>
contains any number of top-level GFM<li>
elements. - Each of these top-level GFM
<li>
elements must contain, as its final element, one GFM<ul>
element. - This final nested
<ul>
must contain a single GFM<li>
element, whose text content must start with ": " (a colon followed by a space). This element may contain block elements, including paragraphs, code blocks, embedded lists, and notes.
Each of these top-level GFM <li>
elements will be transformed into a <dt>
/<dd>
pair, as follows:
- The top-level GFM
<li>
element will be parsed as a GFM<li>
element and its internal contents will comprise the contents of the<dt>
, except for the final nested<ul>
, which will not be included in the<dt>
. - The
<li>
element in the final nested<ul>
will be parsed as a GFM<li>
element and its internal contents will comprise the contents of the<dd>
, except for the leading ": ", which will be discarded.
For example, this is a <dl>
:
md
- term1
- : My description of term1
- `term2`
- : My description of term2
It can have multiple paragraphs, and code blocks too:
```js
const thing = 1;
```
In GFM/CommonMark, this would produce the following HTML:
html
<ul>
<li>
<p>term1</p>
<ul>
<li>: My description of term1</li>
</ul>
</li>
<li>
<p><code>term2</code></p>
<ul>
<li>
<p>: My description of term2</p>
<p>It can have multiple paragraphs, and code blocks too:</p>
<pre>
<code class="brush: js">const thing = 1;</code>
</pre>
</li>
</ul>
</li>
</ul>
On MDN, this would produce the following HTML:
html
<dl>
<dt>
<p>term1</p>
</dt>
<dd>My description of term1</dd>
<dt>
<p><code>term2</code></p>
</dt>
<dd>
<p>My description of term2</p>
<p>It can have multiple paragraphs, and code blocks too:</p>
<pre>
<code class="brush: js">const thing = 1;</code>
</pre>
</dd>
</dl>
Definition lists written using this syntax must consist of pairs of <dt>
/<dd>
elements. Using this syntax, it's not possible to write a list with more than one consecutive <dt>
element or more than one consecutive <dd>
element: the parser will treat this as an error. We expect almost all definition lists on MDN will work with this limitation, and for those that do not, authors can fall back to raw HTML.
As a workaround for cases where an author needs to associate multiple <dt>
items with a single <dd>
, consider providing them as a single <dt>
that holds multiple terms, separated by commas, like this:
md
- `param1`, `param2`, `param3`
- : My description of params 1, 2, and 3
The rationale for the syntax described here is that it works well enough with tools that expect CommonMark (for example, Prettier or GitHub previews) while being reasonably easy to write and to parse.
Discussion reference
This issue was resolved in https://github.com/mdn/content/issues/4367.
Tables
In GFM (but not CommonMark) there is a syntax for tables: https://github.github.com/gfm/#tables-extension-. We will make use of this but:
- The GFM syntax only supports a subset of the features available in HTML. If you need to use table features that are not supported in GFM, use HTML for the table.
- If the GFM representation of the table would be more than 150 characters wide, use HTML for the table.
- We support a special kind of table called a "properties table", which has its own CSS class and is therefore always HTML.
So the general principle is that authors should use the GFM Markdown syntax when they can, and fall back to raw HTML when they have to or when HTML is more readable. For more information, see When to use HTML tables.
GFM table syntax style
In GFM table syntax, authors can omit leading and trailing pipes for rows. MDN authors must include these pipes, for the sake of readability.
That is, MDN authors must use this style:
md
| Heading 1 | Heading 2 | Heading 3 |
| --------- | --------- | --------- |
| cell 1 | cell 2 | cell 3 |
| cell 4 | cell 5 | cell 6 |
and not this style:
md
| Heading 1 | Heading 2 | Heading 3 |
| --------- | --------- | --------- |
| cell 1 | cell 2 | cell 3 |
| cell 4 | cell 5 | cell 6 |
When to use HTML tables
There are three main circumstances in which authors should use HTML tables rather than GFM syntax:
- The table uses features that are not supported in GFM.
- The GFM table would be too wide to be readable.
- The writer wants a special type of table called a "properties table".
Table features that are not supported in GFM
The main limitations of GFM table syntax are:
- GFM tables must have a header row.
- GFM tables may not have a header column.
- GFM won't parse GFM block elements in table cells. For example, you can't have a list in a table cell.
- GFM doesn't support any table elements beyond
<table>
,<tr>
, and<th>
, and<td>
. - GFM doesn't support any table element attributes like
colspan
,rowspan
, orscope
.
If an author needs to use any of the unsupported features, they should write the table in HTML.
Note that we don't recommend the general use of <caption>
elements on tables, since that would also rule out the GFM syntax.
GFM table maximum width
Even when a table could be written in GFM it is sometimes better to use HTML, because GFM uses an "ASCII art" approach to tables that is not readable when table rows get long. Consider the following table:
html
<table>
<tr>
<th>A heading 1</th>
<th>A heading 2</th>
<th>A heading 3</th>
<th>A heading 4</th>
<th>A heading 5</th>
<th>A heading 6</th>
</tr>
<tr>
<td>Something shortish</td>
<td>
Something much longer that really goes into a lot of detail about
something, so much so that the table formatting starts to look bad in GFM
format.
</td>
<td>Something shortish</td>
<td>
Another cell with lots of text in it, that also really goes into a lot of
detail about something, so much so that the table formatting starts to
look bad in GFM format.
</td>
<td>Something shortish</td>
<td>Something shortish</td>
</tr>
</table>
In GFM this will look like:
md
| A heading 1 | A heading 2 | A heading 3 | A heading 4 | A heading 5 | A heading 6 |
| ------------------ | --------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------ | ------------------ |
| Something shortish | Something much longer that really goes into a lot of detail about something, so much so that the table formatting starts to look bad in GFM format. | Something shortish | Another cell with lots of text in it, that also really goes into a lot of detail about something, so much so that the table formatting starts to look bad in GFM format. | Something shortish | Something shortish |
In a case like this it would be better to use HTML.
This leads us to the following guideline: if the Markdown representation of the table would be more than 150 characters wide, use HTML for the table.
Properties tables
Properties tables are a specific type of table used for displaying structured property-value content across a set of pages of a particular type. These tables have two columns: the first column is the header column and lists the properties, and the second column lists their values for this particular item. For example, here's the properties table for the PannerNode
interface:
Number of inputs | 1 |
---|---|
Number of outputs | 0 |
Channel count mode | "explicit" |
Channel count | 2 |
Channel interpretation | "speakers" |
These pages can't be represented in GFM because they have a header column, so writers should use HTML in this case.
To get the special styling, writers should apply the "properties"
class to the table:
html
<table class="properties">
Discussion reference
Superscript and subscript
Writers will be able to use the HTML <sup>
and <sub>
elements if necessary, but should use alternatives if possible. In particular:
- For exponentiation, use the caret:
2^53
. - For ordinal expressions like 1st, prefer words like "first".
- For footnotes, don't mark up the footnote references, e.g.,
<sup>[1]</sup>
.
Discussion reference
This issue was resolved in https://github.com/mdn/content/issues/4578.
Page summary
The page summary is the first "content" paragraph in a page—the first text that appears after the page front matter and any sidebar or page banner macros.
This summary is used for search engine optimization (SEO) and also automatically included alongside page listings by some macros. The first paragraph should therefore be both succinct and informative.
Discussion reference
This issue was resolved in https://github.com/mdn/content/issues/3923.
KumaScript
Writers will be able to include KumaScript macro calls in prose content:
md
The **`margin`** [CSS](/en-US/docs/Web/CSS) property
sets the margin area on all four sides of an element. It is a shorthand for
{{cssxref("margin-top")}}, {{cssxref("margin-right")}}, {{cssxref("margin-bottom")}},
and {{cssxref("margin-left")}}.
{{EmbedInteractiveExample("pages/css/margin.html")}}
The top and bottom margins have no effect on replaced inline elements, such as
{{HTMLElement("span")}} or {{HTMLElement("code")}}.