não consigo editar a resposta de LucasSeveryn, disse a fila cheia, então adicione algumas informações aqui.
maneira 1: + raw_tex
\newpage
e \pagebreak
precisa de raw_tex
extensão.
// com pandoc 2.9.2.1, não funciona com saída docx ou html, --verbose diz
[INFO] Not rendering RawBlock (Format "tex") "\\pagebreak"
[INFO] Not rendering RawBlock (Format "tex") "\\newpage"
maneira 2: + raw_attribute
https://pandoc.org/MANUAL.html#extension-raw_attribute
```{=openxml}
<w:p>
<w:r>
<w:br w:type="page"/>
</w:r>
</w:p>
```
// também não é compatível com o formato de entrada gfm.
// isso funcionou para a saída docx, não funciona com a saída html.
extensão AVISO
isso precisa de +raw_tex
extensão de formato. que não é compatível com todas as variantes de redução no pandoc.
https://pandoc.org/MANUAL.html#markdown-variants
Note, however, that commonmark and gfm have limited support for extensions.
Only those listed below (and smart, raw_tex, and hard_line_breaks) will work.
The extensions can, however, all be individually disabled.
Also, raw_tex only affects gfm output, not input.
então -f markdown
funcionará, mas -f gfm
não funcionará.
extensão de formato
https://pandoc.org/MANUAL.html#option--from
Extensions can be individually enabled or disabled by appending
+EXTENSION or -EXTENSION to the format name.
por exemplo
-t html+raw_tex
: output enable raw_tex
-f markdown-raw_tex-raw_attribute
: entrada desativa raw_tex e raw_attribute