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
- CommonMark doesn't include footnotes; supported in Pandoc, PHP Markdown Extra, and some static site generators.
Related Markdown Examples
Try It
Markdown Preview Tool →All Examples
Markdown Tables with AlignmentImages with Alt TextFenced Code Blocks with Syntax HighlightingLinks (Inline, Reference, Auto)Headings H1–H6Bold, Italic, StrikethroughOrdered and Unordered ListsBlock QuotesHorizontal RulesTask Lists / CheckboxesEmoji ShortcodesNested ListsEscaping Special CharactersDefinition Lists