footnote

Convert an array or object to Markdown footnote definitions.

Syntax

{{ value | footnote }}

Example

01

Basic usage

InputTS
1{2  "notes": [3    "First item",4    "Second item"5  ]6}
TemplateKNAP
1{{ notes | footnote }}
OutputKNAP
1[^1]: First item23[^2]: Second item