mirror of
https://github.com/jgm/pandoc.git
synced 2026-09-03 06:05:45 +00:00
24 lines
357 B
Markdown
24 lines
357 B
Markdown
```
|
|
% pandoc -t native
|
|
::: {#something}
|
|
Text with a footnote.[^3]
|
|
|
|
[^3]: A footnote.
|
|
:::
|
|
^D
|
|
[ Div
|
|
( "something" , [] , [] )
|
|
[ Para
|
|
[ Str "Text"
|
|
, Space
|
|
, Str "with"
|
|
, Space
|
|
, Str "a"
|
|
, Space
|
|
, Str "footnote."
|
|
, Note [ Para [ Str "A" , Space , Str "footnote." ] ]
|
|
]
|
|
]
|
|
]
|
|
```
|