Back to playground

Footnotes

Footnotes let you provide extra context or references without interrupting the main flow of your content. They are collected and displayed at the bottom of the page.

Further reading:

Syntax

GitHub Flavored Markdown (GFM) supports footnotes using bracket syntax:

markdown
Here is a footnote reference.[^1]
Another reference appears here.[^2]
[^1]: This is the content of the first footnote.
[^2]: Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla et euismod
nulla. Curabitur feugiat, tortor non consequat finibus, justo purus auctor
massa, nec semper lorem quam in massa.

Rendered output

Here is a footnote reference.1

Another reference appears here.2


Footnotes

  1. This is the content of the first footnote.

  2. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla et euismod
    nulla. Curabitur feugiat, tortor non consequat finibus, justo purus auctor
    massa, nec semper lorem quam in massa.