├── .editorconfig ├── .github ├── CODEOWNERS ├── FUNDING.yml └── workflows │ ├── ci.yml │ └── release.yml ├── .gitignore ├── .tools └── Dockerfile ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── abstract-to-meta ├── Makefile ├── README.md ├── abstract-to-meta.lua ├── expected1.md ├── expected2.md ├── sample1.md └── sample2.md ├── author-info-blocks ├── .gitignore ├── Makefile ├── README.md ├── author-info-blocks.lua ├── expected.native ├── sample.md └── sample.png ├── bibexport ├── Makefile ├── README.md ├── bibexport.lua ├── coffee.bib ├── expected.bibexport.aux ├── expected.bibexport.bib ├── sample.bib └── sample.md ├── cito ├── Makefile ├── README.md ├── cito.lua ├── expected.md ├── sample.bib └── sample.md ├── diagram-generator ├── .gitignore ├── Makefile ├── README.md ├── diagram-generator.lua └── sample.md ├── doi2cite ├── Makefile ├── README.md ├── __from_DOI.bib ├── doi2cite.lua ├── expected1.md ├── expected1.pdf ├── expected2.md ├── my_refs.bib ├── sample1.csl ├── sample1.md └── sample2.md ├── first-line-indent ├── LICENSE ├── Makefile ├── README.md ├── expected.html ├── expected.tex ├── first-line-indent.lua └── sample.md ├── include-code-files ├── Makefile ├── README.md ├── expected.native ├── include-code-files.lua └── sample.md ├── include-files ├── Makefile ├── README.md ├── expected-auto.native ├── expected.native ├── file-a.md ├── file-b.md ├── file-c.md ├── file-d.org ├── file-f.md ├── include-files.lua ├── sample.md └── subdir │ └── file-g.md ├── latex-hyphen ├── Makefile ├── README.md ├── expected.tex ├── latex-hyphen.lua ├── sample.md ├── with-filter.png └── without-filter.png ├── lilypond ├── .gitignore ├── Makefile ├── README.md ├── appoggiaturas.md ├── appoggiaturas.native.expected ├── code.md ├── code.native.expected ├── lilypond.lua ├── oboe.md └── oboe.native.expected ├── list-table ├── Makefile ├── README.md ├── expected.html ├── list-table.lua └── sample.md ├── lua-debug-example ├── Makefile ├── README.md ├── expected.html ├── lua-debug-example.lua └── sample.md ├── math2svg ├── Makefile ├── README.md ├── expected.html ├── math2svg.lua ├── sample.md └── sample.yaml ├── mhchem ├── Makefile ├── README.md ├── mhchem.lua ├── test.docx └── test.txt ├── minted ├── .gitignore ├── Makefile ├── README.md ├── background_color.py ├── minted.lua ├── run_minted_tests.py └── sample.md ├── multiple-bibliographies ├── Makefile ├── README.md ├── expected.native ├── multiple-bibliographies.lua ├── primary.bib ├── sample.md └── secondary.bib ├── not-in-format ├── LICENSE ├── Makefile ├── README.md ├── expected.html ├── expected.tex ├── not-in-format.lua └── sample.md ├── pagebreak ├── Makefile ├── README.md ├── expected.adoc ├── expected.html ├── expected.ms ├── pagebreak.lua └── sample.md ├── pandoc-quotes.lua ├── .gitignore ├── LICENSE.txt ├── Makefile ├── README.md ├── man │ ├── pandoc-quotes.lua.1 │ └── pandoc-quotes.lua.md ├── pandoc-quotes.lua └── test │ ├── docs │ ├── test-lookup-mapping.md │ ├── test-lookup-no-fallback.md │ ├── test-lookup-simple.md │ ├── test-lookup-void-country.md │ ├── test-noop.md │ └── test-simple.md │ ├── norms │ ├── test-lookup-mapping.out │ ├── test-lookup-no-fallback.out │ ├── test-lookup-simple.out │ ├── test-lookup-void-country.out │ ├── test-noop.out │ └── test-simple.out │ └── tmp │ └── test-noop.out ├── revealjs-codeblock ├── Makefile ├── README.md ├── expected.html ├── revealjs-codeblock.lua ├── sample.md └── template.html ├── runtests.sh ├── scholarly-metadata ├── Makefile ├── README.md ├── expected.md ├── sample.md └── scholarly-metadata.lua ├── scrlttr2 ├── Makefile ├── README.md ├── expected-strings.sh ├── sample.md └── scrlttr2.lua ├── section-refs ├── Makefile ├── README.md ├── bibliography.bib ├── expected_default.native ├── expected_no_citeproc.native ├── expected_refs_name.native ├── expected_section_level.native ├── sample.md └── section-refs.lua ├── short-captions ├── Makefile ├── README.md ├── expected-1.tex ├── expected-2.tex ├── fig.pdf └── short-captions.lua ├── spellcheck ├── Makefile ├── README.md ├── expected.txt ├── sample.md └── spellcheck.lua ├── table-short-captions ├── Makefile ├── README.md ├── sample.md ├── table-short-captions.lua ├── test-table-short-captions-crossref.sh └── test-table-short-captions.sh ├── track-changes ├── .gitignore ├── Makefile ├── README.md ├── TODO.md ├── expected_accept.markdown ├── expected_draft.html ├── expected_draft.tex ├── expected_reject.markdown ├── sample.md ├── test-track-changes.sh └── track-changes.lua └── wordcount ├── Makefile ├── README.md ├── expected.txt ├── sample.md └── wordcount.lua /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [tarleb, jgm] 2 | -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/.gitignore -------------------------------------------------------------------------------- /.tools/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/.tools/Dockerfile -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/README.md -------------------------------------------------------------------------------- /abstract-to-meta/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/abstract-to-meta/Makefile -------------------------------------------------------------------------------- /abstract-to-meta/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/abstract-to-meta/README.md -------------------------------------------------------------------------------- /abstract-to-meta/abstract-to-meta.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/abstract-to-meta/abstract-to-meta.lua -------------------------------------------------------------------------------- /abstract-to-meta/expected1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/abstract-to-meta/expected1.md -------------------------------------------------------------------------------- /abstract-to-meta/expected2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/abstract-to-meta/expected2.md -------------------------------------------------------------------------------- /abstract-to-meta/sample1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/abstract-to-meta/sample1.md -------------------------------------------------------------------------------- /abstract-to-meta/sample2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/abstract-to-meta/sample2.md -------------------------------------------------------------------------------- /author-info-blocks/.gitignore: -------------------------------------------------------------------------------- 1 | /sample.pdf -------------------------------------------------------------------------------- /author-info-blocks/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/author-info-blocks/Makefile -------------------------------------------------------------------------------- /author-info-blocks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/author-info-blocks/README.md -------------------------------------------------------------------------------- /author-info-blocks/author-info-blocks.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/author-info-blocks/author-info-blocks.lua -------------------------------------------------------------------------------- /author-info-blocks/expected.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/author-info-blocks/expected.native -------------------------------------------------------------------------------- /author-info-blocks/sample.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/author-info-blocks/sample.md -------------------------------------------------------------------------------- /author-info-blocks/sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/author-info-blocks/sample.png -------------------------------------------------------------------------------- /bibexport/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/bibexport/Makefile -------------------------------------------------------------------------------- /bibexport/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/bibexport/README.md -------------------------------------------------------------------------------- /bibexport/bibexport.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/bibexport/bibexport.lua -------------------------------------------------------------------------------- /bibexport/coffee.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/bibexport/coffee.bib -------------------------------------------------------------------------------- /bibexport/expected.bibexport.aux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/bibexport/expected.bibexport.aux -------------------------------------------------------------------------------- /bibexport/expected.bibexport.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/bibexport/expected.bibexport.bib -------------------------------------------------------------------------------- /bibexport/sample.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/bibexport/sample.bib -------------------------------------------------------------------------------- /bibexport/sample.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/bibexport/sample.md -------------------------------------------------------------------------------- /cito/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/cito/Makefile -------------------------------------------------------------------------------- /cito/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/cito/README.md -------------------------------------------------------------------------------- /cito/cito.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/cito/cito.lua -------------------------------------------------------------------------------- /cito/expected.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/cito/expected.md -------------------------------------------------------------------------------- /cito/sample.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/cito/sample.bib -------------------------------------------------------------------------------- /cito/sample.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/cito/sample.md -------------------------------------------------------------------------------- /diagram-generator/.gitignore: -------------------------------------------------------------------------------- 1 | sample.html 2 | tmp-latex 3 | -------------------------------------------------------------------------------- /diagram-generator/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/diagram-generator/Makefile -------------------------------------------------------------------------------- /diagram-generator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/diagram-generator/README.md -------------------------------------------------------------------------------- /diagram-generator/diagram-generator.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/diagram-generator/diagram-generator.lua -------------------------------------------------------------------------------- /diagram-generator/sample.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/diagram-generator/sample.md -------------------------------------------------------------------------------- /doi2cite/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/doi2cite/Makefile -------------------------------------------------------------------------------- /doi2cite/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/doi2cite/README.md -------------------------------------------------------------------------------- /doi2cite/__from_DOI.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/doi2cite/__from_DOI.bib -------------------------------------------------------------------------------- /doi2cite/doi2cite.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/doi2cite/doi2cite.lua -------------------------------------------------------------------------------- /doi2cite/expected1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/doi2cite/expected1.md -------------------------------------------------------------------------------- /doi2cite/expected1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/doi2cite/expected1.pdf -------------------------------------------------------------------------------- /doi2cite/expected2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/doi2cite/expected2.md -------------------------------------------------------------------------------- /doi2cite/my_refs.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/doi2cite/my_refs.bib -------------------------------------------------------------------------------- /doi2cite/sample1.csl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/doi2cite/sample1.csl -------------------------------------------------------------------------------- /doi2cite/sample1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/doi2cite/sample1.md -------------------------------------------------------------------------------- /doi2cite/sample2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/doi2cite/sample2.md -------------------------------------------------------------------------------- /first-line-indent/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/first-line-indent/LICENSE -------------------------------------------------------------------------------- /first-line-indent/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/first-line-indent/Makefile -------------------------------------------------------------------------------- /first-line-indent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/first-line-indent/README.md -------------------------------------------------------------------------------- /first-line-indent/expected.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/first-line-indent/expected.html -------------------------------------------------------------------------------- /first-line-indent/expected.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/first-line-indent/expected.tex -------------------------------------------------------------------------------- /first-line-indent/first-line-indent.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/first-line-indent/first-line-indent.lua -------------------------------------------------------------------------------- /first-line-indent/sample.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/first-line-indent/sample.md -------------------------------------------------------------------------------- /include-code-files/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/include-code-files/Makefile -------------------------------------------------------------------------------- /include-code-files/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/include-code-files/README.md -------------------------------------------------------------------------------- /include-code-files/expected.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/include-code-files/expected.native -------------------------------------------------------------------------------- /include-code-files/include-code-files.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/include-code-files/include-code-files.lua -------------------------------------------------------------------------------- /include-code-files/sample.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/include-code-files/sample.md -------------------------------------------------------------------------------- /include-files/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/include-files/Makefile -------------------------------------------------------------------------------- /include-files/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/include-files/README.md -------------------------------------------------------------------------------- /include-files/expected-auto.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/include-files/expected-auto.native -------------------------------------------------------------------------------- /include-files/expected.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/include-files/expected.native -------------------------------------------------------------------------------- /include-files/file-a.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/include-files/file-a.md -------------------------------------------------------------------------------- /include-files/file-b.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/include-files/file-b.md -------------------------------------------------------------------------------- /include-files/file-c.md: -------------------------------------------------------------------------------- 1 | # Questionaire 2 | 3 | - Is this good? 4 | -------------------------------------------------------------------------------- /include-files/file-d.org: -------------------------------------------------------------------------------- 1 | * Org header 2 | 3 | This is /emphasized/. 4 | -------------------------------------------------------------------------------- /include-files/file-f.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/include-files/file-f.md -------------------------------------------------------------------------------- /include-files/include-files.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/include-files/include-files.lua -------------------------------------------------------------------------------- /include-files/sample.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/include-files/sample.md -------------------------------------------------------------------------------- /include-files/subdir/file-g.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/include-files/subdir/file-g.md -------------------------------------------------------------------------------- /latex-hyphen/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/latex-hyphen/Makefile -------------------------------------------------------------------------------- /latex-hyphen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/latex-hyphen/README.md -------------------------------------------------------------------------------- /latex-hyphen/expected.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/latex-hyphen/expected.tex -------------------------------------------------------------------------------- /latex-hyphen/latex-hyphen.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/latex-hyphen/latex-hyphen.lua -------------------------------------------------------------------------------- /latex-hyphen/sample.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/latex-hyphen/sample.md -------------------------------------------------------------------------------- /latex-hyphen/with-filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/latex-hyphen/with-filter.png -------------------------------------------------------------------------------- /latex-hyphen/without-filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/latex-hyphen/without-filter.png -------------------------------------------------------------------------------- /lilypond/.gitignore: -------------------------------------------------------------------------------- 1 | /*.png 2 | -------------------------------------------------------------------------------- /lilypond/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/lilypond/Makefile -------------------------------------------------------------------------------- /lilypond/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/lilypond/README.md -------------------------------------------------------------------------------- /lilypond/appoggiaturas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/lilypond/appoggiaturas.md -------------------------------------------------------------------------------- /lilypond/appoggiaturas.native.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/lilypond/appoggiaturas.native.expected -------------------------------------------------------------------------------- /lilypond/code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/lilypond/code.md -------------------------------------------------------------------------------- /lilypond/code.native.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/lilypond/code.native.expected -------------------------------------------------------------------------------- /lilypond/lilypond.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/lilypond/lilypond.lua -------------------------------------------------------------------------------- /lilypond/oboe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/lilypond/oboe.md -------------------------------------------------------------------------------- /lilypond/oboe.native.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/lilypond/oboe.native.expected -------------------------------------------------------------------------------- /list-table/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/list-table/Makefile -------------------------------------------------------------------------------- /list-table/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/list-table/README.md -------------------------------------------------------------------------------- /list-table/expected.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/list-table/expected.html -------------------------------------------------------------------------------- /list-table/list-table.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/list-table/list-table.lua -------------------------------------------------------------------------------- /list-table/sample.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/list-table/sample.md -------------------------------------------------------------------------------- /lua-debug-example/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/lua-debug-example/Makefile -------------------------------------------------------------------------------- /lua-debug-example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/lua-debug-example/README.md -------------------------------------------------------------------------------- /lua-debug-example/expected.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/lua-debug-example/expected.html -------------------------------------------------------------------------------- /lua-debug-example/lua-debug-example.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/lua-debug-example/lua-debug-example.lua -------------------------------------------------------------------------------- /lua-debug-example/sample.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/lua-debug-example/sample.md -------------------------------------------------------------------------------- /math2svg/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/math2svg/Makefile -------------------------------------------------------------------------------- /math2svg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/math2svg/README.md -------------------------------------------------------------------------------- /math2svg/expected.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/math2svg/expected.html -------------------------------------------------------------------------------- /math2svg/math2svg.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/math2svg/math2svg.lua -------------------------------------------------------------------------------- /math2svg/sample.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/math2svg/sample.md -------------------------------------------------------------------------------- /math2svg/sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/math2svg/sample.yaml -------------------------------------------------------------------------------- /mhchem/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/mhchem/Makefile -------------------------------------------------------------------------------- /mhchem/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/mhchem/README.md -------------------------------------------------------------------------------- /mhchem/mhchem.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/mhchem/mhchem.lua -------------------------------------------------------------------------------- /mhchem/test.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/mhchem/test.docx -------------------------------------------------------------------------------- /mhchem/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/mhchem/test.txt -------------------------------------------------------------------------------- /minted/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/minted/.gitignore -------------------------------------------------------------------------------- /minted/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/minted/Makefile -------------------------------------------------------------------------------- /minted/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/minted/README.md -------------------------------------------------------------------------------- /minted/background_color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/minted/background_color.py -------------------------------------------------------------------------------- /minted/minted.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/minted/minted.lua -------------------------------------------------------------------------------- /minted/run_minted_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/minted/run_minted_tests.py -------------------------------------------------------------------------------- /minted/sample.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/minted/sample.md -------------------------------------------------------------------------------- /multiple-bibliographies/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/multiple-bibliographies/Makefile -------------------------------------------------------------------------------- /multiple-bibliographies/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/multiple-bibliographies/README.md -------------------------------------------------------------------------------- /multiple-bibliographies/expected.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/multiple-bibliographies/expected.native -------------------------------------------------------------------------------- /multiple-bibliographies/multiple-bibliographies.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/multiple-bibliographies/multiple-bibliographies.lua -------------------------------------------------------------------------------- /multiple-bibliographies/primary.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/multiple-bibliographies/primary.bib -------------------------------------------------------------------------------- /multiple-bibliographies/sample.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/multiple-bibliographies/sample.md -------------------------------------------------------------------------------- /multiple-bibliographies/secondary.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/multiple-bibliographies/secondary.bib -------------------------------------------------------------------------------- /not-in-format/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/not-in-format/LICENSE -------------------------------------------------------------------------------- /not-in-format/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/not-in-format/Makefile -------------------------------------------------------------------------------- /not-in-format/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/not-in-format/README.md -------------------------------------------------------------------------------- /not-in-format/expected.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/not-in-format/expected.html -------------------------------------------------------------------------------- /not-in-format/expected.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/not-in-format/expected.tex -------------------------------------------------------------------------------- /not-in-format/not-in-format.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/not-in-format/not-in-format.lua -------------------------------------------------------------------------------- /not-in-format/sample.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/not-in-format/sample.md -------------------------------------------------------------------------------- /pagebreak/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/pagebreak/Makefile -------------------------------------------------------------------------------- /pagebreak/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/pagebreak/README.md -------------------------------------------------------------------------------- /pagebreak/expected.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/pagebreak/expected.adoc -------------------------------------------------------------------------------- /pagebreak/expected.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/pagebreak/expected.html -------------------------------------------------------------------------------- /pagebreak/expected.ms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/pagebreak/expected.ms -------------------------------------------------------------------------------- /pagebreak/pagebreak.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/pagebreak/pagebreak.lua -------------------------------------------------------------------------------- /pagebreak/sample.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/pagebreak/sample.md -------------------------------------------------------------------------------- /pandoc-quotes.lua/.gitignore: -------------------------------------------------------------------------------- 1 | /test/tmp 2 | -------------------------------------------------------------------------------- /pandoc-quotes.lua/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/pandoc-quotes.lua/LICENSE.txt -------------------------------------------------------------------------------- /pandoc-quotes.lua/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/pandoc-quotes.lua/Makefile -------------------------------------------------------------------------------- /pandoc-quotes.lua/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/pandoc-quotes.lua/README.md -------------------------------------------------------------------------------- /pandoc-quotes.lua/man/pandoc-quotes.lua.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/pandoc-quotes.lua/man/pandoc-quotes.lua.1 -------------------------------------------------------------------------------- /pandoc-quotes.lua/man/pandoc-quotes.lua.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/pandoc-quotes.lua/man/pandoc-quotes.lua.md -------------------------------------------------------------------------------- /pandoc-quotes.lua/pandoc-quotes.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/pandoc-quotes.lua/pandoc-quotes.lua -------------------------------------------------------------------------------- /pandoc-quotes.lua/test/docs/test-lookup-mapping.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/pandoc-quotes.lua/test/docs/test-lookup-mapping.md -------------------------------------------------------------------------------- /pandoc-quotes.lua/test/docs/test-lookup-no-fallback.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/pandoc-quotes.lua/test/docs/test-lookup-no-fallback.md -------------------------------------------------------------------------------- /pandoc-quotes.lua/test/docs/test-lookup-simple.md: -------------------------------------------------------------------------------- 1 | --- 2 | quot-lang: de 3 | ... 4 | 5 | This is a "test". 6 | A 'simple' one. 7 | -------------------------------------------------------------------------------- /pandoc-quotes.lua/test/docs/test-lookup-void-country.md: -------------------------------------------------------------------------------- 1 | --- 2 | lang: de-AT 3 | ... 4 | 5 | This is "yet another test". 6 | Still a 'simple' one. 7 | -------------------------------------------------------------------------------- /pandoc-quotes.lua/test/docs/test-noop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/pandoc-quotes.lua/test/docs/test-noop.md -------------------------------------------------------------------------------- /pandoc-quotes.lua/test/docs/test-simple.md: -------------------------------------------------------------------------------- 1 | --- 2 | quot-marks: „“‚‘ 3 | ... 4 | 5 | This is a "test". 6 | A 'very simple' one. 7 | -------------------------------------------------------------------------------- /pandoc-quotes.lua/test/norms/test-lookup-mapping.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/pandoc-quotes.lua/test/norms/test-lookup-mapping.out -------------------------------------------------------------------------------- /pandoc-quotes.lua/test/norms/test-lookup-no-fallback.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/pandoc-quotes.lua/test/norms/test-lookup-no-fallback.out -------------------------------------------------------------------------------- /pandoc-quotes.lua/test/norms/test-lookup-simple.out: -------------------------------------------------------------------------------- 1 |

This is a „test“. A ‚simple‘ one.

2 | -------------------------------------------------------------------------------- /pandoc-quotes.lua/test/norms/test-lookup-void-country.out: -------------------------------------------------------------------------------- 1 |

This is „yet another test“. Still a ‚simple‘ one.

2 | -------------------------------------------------------------------------------- /pandoc-quotes.lua/test/norms/test-noop.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/pandoc-quotes.lua/test/norms/test-noop.out -------------------------------------------------------------------------------- /pandoc-quotes.lua/test/norms/test-simple.out: -------------------------------------------------------------------------------- 1 |

This is a „test“. A ‚very simple‘ one.

2 | -------------------------------------------------------------------------------- /pandoc-quotes.lua/test/tmp/test-noop.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/pandoc-quotes.lua/test/tmp/test-noop.out -------------------------------------------------------------------------------- /revealjs-codeblock/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/revealjs-codeblock/Makefile -------------------------------------------------------------------------------- /revealjs-codeblock/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/revealjs-codeblock/README.md -------------------------------------------------------------------------------- /revealjs-codeblock/expected.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/revealjs-codeblock/expected.html -------------------------------------------------------------------------------- /revealjs-codeblock/revealjs-codeblock.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/revealjs-codeblock/revealjs-codeblock.lua -------------------------------------------------------------------------------- /revealjs-codeblock/sample.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/revealjs-codeblock/sample.md -------------------------------------------------------------------------------- /revealjs-codeblock/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/revealjs-codeblock/template.html -------------------------------------------------------------------------------- /runtests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/runtests.sh -------------------------------------------------------------------------------- /scholarly-metadata/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/scholarly-metadata/Makefile -------------------------------------------------------------------------------- /scholarly-metadata/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/scholarly-metadata/README.md -------------------------------------------------------------------------------- /scholarly-metadata/expected.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/scholarly-metadata/expected.md -------------------------------------------------------------------------------- /scholarly-metadata/sample.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/scholarly-metadata/sample.md -------------------------------------------------------------------------------- /scholarly-metadata/scholarly-metadata.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/scholarly-metadata/scholarly-metadata.lua -------------------------------------------------------------------------------- /scrlttr2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/scrlttr2/Makefile -------------------------------------------------------------------------------- /scrlttr2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/scrlttr2/README.md -------------------------------------------------------------------------------- /scrlttr2/expected-strings.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/scrlttr2/expected-strings.sh -------------------------------------------------------------------------------- /scrlttr2/sample.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/scrlttr2/sample.md -------------------------------------------------------------------------------- /scrlttr2/scrlttr2.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/scrlttr2/scrlttr2.lua -------------------------------------------------------------------------------- /section-refs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/section-refs/Makefile -------------------------------------------------------------------------------- /section-refs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/section-refs/README.md -------------------------------------------------------------------------------- /section-refs/bibliography.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/section-refs/bibliography.bib -------------------------------------------------------------------------------- /section-refs/expected_default.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/section-refs/expected_default.native -------------------------------------------------------------------------------- /section-refs/expected_no_citeproc.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/section-refs/expected_no_citeproc.native -------------------------------------------------------------------------------- /section-refs/expected_refs_name.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/section-refs/expected_refs_name.native -------------------------------------------------------------------------------- /section-refs/expected_section_level.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/section-refs/expected_section_level.native -------------------------------------------------------------------------------- /section-refs/sample.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/section-refs/sample.md -------------------------------------------------------------------------------- /section-refs/section-refs.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/section-refs/section-refs.lua -------------------------------------------------------------------------------- /short-captions/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/short-captions/Makefile -------------------------------------------------------------------------------- /short-captions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/short-captions/README.md -------------------------------------------------------------------------------- /short-captions/expected-1.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/short-captions/expected-1.tex -------------------------------------------------------------------------------- /short-captions/expected-2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/short-captions/expected-2.tex -------------------------------------------------------------------------------- /short-captions/fig.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/short-captions/fig.pdf -------------------------------------------------------------------------------- /short-captions/short-captions.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/short-captions/short-captions.lua -------------------------------------------------------------------------------- /spellcheck/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/spellcheck/Makefile -------------------------------------------------------------------------------- /spellcheck/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/spellcheck/README.md -------------------------------------------------------------------------------- /spellcheck/expected.txt: -------------------------------------------------------------------------------- 1 | missspeling [en] 2 | summer 3 | -------------------------------------------------------------------------------- /spellcheck/sample.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/spellcheck/sample.md -------------------------------------------------------------------------------- /spellcheck/spellcheck.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/spellcheck/spellcheck.lua -------------------------------------------------------------------------------- /table-short-captions/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/table-short-captions/Makefile -------------------------------------------------------------------------------- /table-short-captions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/table-short-captions/README.md -------------------------------------------------------------------------------- /table-short-captions/sample.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/table-short-captions/sample.md -------------------------------------------------------------------------------- /table-short-captions/table-short-captions.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/table-short-captions/table-short-captions.lua -------------------------------------------------------------------------------- /table-short-captions/test-table-short-captions-crossref.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/table-short-captions/test-table-short-captions-crossref.sh -------------------------------------------------------------------------------- /table-short-captions/test-table-short-captions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/table-short-captions/test-table-short-captions.sh -------------------------------------------------------------------------------- /track-changes/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/track-changes/.gitignore -------------------------------------------------------------------------------- /track-changes/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/track-changes/Makefile -------------------------------------------------------------------------------- /track-changes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/track-changes/README.md -------------------------------------------------------------------------------- /track-changes/TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/track-changes/TODO.md -------------------------------------------------------------------------------- /track-changes/expected_accept.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/track-changes/expected_accept.markdown -------------------------------------------------------------------------------- /track-changes/expected_draft.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/track-changes/expected_draft.html -------------------------------------------------------------------------------- /track-changes/expected_draft.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/track-changes/expected_draft.tex -------------------------------------------------------------------------------- /track-changes/expected_reject.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/track-changes/expected_reject.markdown -------------------------------------------------------------------------------- /track-changes/sample.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/track-changes/sample.md -------------------------------------------------------------------------------- /track-changes/test-track-changes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/track-changes/test-track-changes.sh -------------------------------------------------------------------------------- /track-changes/track-changes.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/track-changes/track-changes.lua -------------------------------------------------------------------------------- /wordcount/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/wordcount/Makefile -------------------------------------------------------------------------------- /wordcount/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/wordcount/README.md -------------------------------------------------------------------------------- /wordcount/expected.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/wordcount/expected.txt -------------------------------------------------------------------------------- /wordcount/sample.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/wordcount/sample.md -------------------------------------------------------------------------------- /wordcount/wordcount.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandoc/lua-filters/HEAD/wordcount/wordcount.lua --------------------------------------------------------------------------------