pandoc-docx-pagebreak

Pandoc filter for docx output to insert pagebreak at will


Keywords
pandoc, filter, docx
License
MIT
Install
pip install pandoc-docx-pagebreak==0.0.2

Documentation

pandoc-docx-pagebreak-py

Pandoc filter to insert page break or section break in docx file

\toc

install

pip3 install git+https://github.com/pandocker/pandoc-docx-pagebreak-py

Usage

  • Add \newpage where preferred to insert a page break
    • Expecting to work like native pandoc behavior for latex output
  • Add \toc where preferred to insert TOC(Table of Contents)
    • unable to use with --toc otherwise TOC appears on head of document also
# Try the filter with this file like this:
pandoc -f markdown -t docx -o docx.docx --filter=pandoc-docx-pagebreakpy README.md

Sample

Contents before pagebreak

\newpage
Contents after _Page Break_

Contents after **Section Break**

Contents before pagebreak

\newpage

Contents after Page Break

Contents after Section Break