Skip to content
All referenceBlock Elements

Markdown Footnote

How to add footnotes in markdown using [^label] syntax. Supported by GitHub, Pandoc, and most extended parsers.

What is markdown footnote?

Footnotes add numbered references to text that link to definitions at the bottom of the document. The inline marker [^1] or [^label] appears in the text, and the corresponding [^1]: definition appears elsewhere. Footnotes are a GitHub Flavored Markdown extension.

Syntax

Numbered footnote

The [^1] marker in text links to the [^1]: definition at the bottom.

Result
Here is some text.1 ...
  • This is the footnote text.
  • Named footnote

    Use descriptive labels instead of numbers for more readable source.

    Result
    ...

    Multi-line footnote

    Indent continuation paragraphs with 4 spaces.

    Result
    ...

    Platform support

    PlatformSupportedNotes
    GitHubYesSupported since 2021
    GitLabYes
    PandocYes
    ObsidianYes
    DiscordNo
    NotionNo

    Common mistakes

    Wrong
    [1] footnote marker
    Right
    [^1] with caret

    Plain square brackets [1] create a reference link, not a footnote. The caret ^ distinguishes footnote syntax.

    Wrong
    Forgetting the colon after the label
    Right
    [^1]: definition text

    The definition must have a colon after the closing bracket: [^1]: text.

    Tips for footnote

    1Use named labels for readability

    [^source]: URL is more readable in source than [^1]: URL, especially when you have many footnotes.

    2Place definitions anywhere

    Footnote definitions can be placed anywhere in the document — beginning, end, or near where they're referenced. They always render at the bottom.

    Frequently asked questions

    Everything you need to know.

    1

    How do I add footnotes in markdown?

    Use [^1] in your text and [^1]: your footnote text anywhere in the document. GitHub, Pandoc, and Obsidian support this syntax.

    Related elements

    Try it in the editor

    Paste your markdown and see footnote rendered instantly with professional themes.