Footnote

Mr.Hope ... 2021-2-25 Markdown
  • Markdown
Less than 1 minute

Let the Markdown file in your VuePress site support footnotes.

# Configuration




 




module.exports = {
  themeConfig: {
    mdEnhance: {
      footnote: true,
    },
  },
};
1
2
3
4
5
6
7

# Syntax

Footnote 1 link[1].

Footnote 2 link[2].

Inline footnote[3] definition.

Duplicated footnote reference[2:1].


  1. Footnote can have markup

    and multiple paragraphs. ↩︎

  2. Footnote text. ↩︎ ↩︎

  3. Text of inline footnote ↩︎

Last update: February 27, 2021 06:18
Contributors: Mr.Hope