mirror of
https://github.com/jgm/pandoc.git
synced 2026-07-12 12:27:21 +00:00
c93acab035
The pagebreak is parsed as a HorizontalRule inside a wrapper Div with class `page-break`. Closes #11101.
276 B
276 B
% pandoc -f typst -t native
First paragraph.
#pagebreak()
Second paragraph.
^D
[ Para [ Str "First" , Space , Str "paragraph." ]
, Div
( "" , [ "page-break" ] , [ ( "wrapper" , "1" ) ] )
[ HorizontalRule ]
, Para [ Str "Second" , Space , Str "paragraph." ]
]