Footnotes

Reference-style footnotes

Markdown Source

Text with footnote[^1].
[^1]: Footnote content here.

Rendered HTML Output

<p>Text with footnote<sup><a href="#fn1">1</a></sup>.</p>
<footer><ol><li id="fn1">Footnote content here.</li></ol></footer>

Explanation

Inline: [^label] where label is a number or identifier. Definition: [^label]: content on its own line. Footnotes are an extension; not all Markdown processors support them.

Tips & Common Mistakes

Related Markdown Examples

Try It

Markdown Preview Tool →

All Examples