├── .editorconfig ├── .github ├── FUNDING.yml └── workflows │ └── ci.yaml ├── LICENSE ├── Makefile ├── README.md ├── pagebreak.lua └── test ├── expected.adoc ├── expected.html ├── expected.ms ├── expected.no-form-feed.html ├── expected.typst ├── input.md ├── test-adoc.yaml ├── test-html.yaml ├── test-ms.yaml ├── test-no-form-feed.html.yaml └── test-typst.yaml /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc-ext/pagebreak/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [tarleb] 2 | -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc-ext/pagebreak/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc-ext/pagebreak/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc-ext/pagebreak/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc-ext/pagebreak/HEAD/README.md -------------------------------------------------------------------------------- /pagebreak.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc-ext/pagebreak/HEAD/pagebreak.lua -------------------------------------------------------------------------------- /test/expected.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc-ext/pagebreak/HEAD/test/expected.adoc -------------------------------------------------------------------------------- /test/expected.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc-ext/pagebreak/HEAD/test/expected.html -------------------------------------------------------------------------------- /test/expected.ms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc-ext/pagebreak/HEAD/test/expected.ms -------------------------------------------------------------------------------- /test/expected.no-form-feed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc-ext/pagebreak/HEAD/test/expected.no-form-feed.html -------------------------------------------------------------------------------- /test/expected.typst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc-ext/pagebreak/HEAD/test/expected.typst -------------------------------------------------------------------------------- /test/input.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc-ext/pagebreak/HEAD/test/input.md -------------------------------------------------------------------------------- /test/test-adoc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc-ext/pagebreak/HEAD/test/test-adoc.yaml -------------------------------------------------------------------------------- /test/test-html.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc-ext/pagebreak/HEAD/test/test-html.yaml -------------------------------------------------------------------------------- /test/test-ms.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc-ext/pagebreak/HEAD/test/test-ms.yaml -------------------------------------------------------------------------------- /test/test-no-form-feed.html.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc-ext/pagebreak/HEAD/test/test-no-form-feed.html.yaml -------------------------------------------------------------------------------- /test/test-typst.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc-ext/pagebreak/HEAD/test/test-typst.yaml --------------------------------------------------------------------------------