├── .github └── workflows │ ├── force-publish.yml │ ├── publish.yml │ └── run_tests.yml ├── .gitignore ├── CONTRIBUTING.md ├── DISTRIBUTION.md ├── LICENSE ├── MANIFEST.in ├── README.md ├── docs ├── help.txt ├── howtobuild.txt └── source │ ├── _static │ ├── autofilters.md │ ├── css │ │ └── panflute.css │ ├── csv-tables.py │ ├── emph-last-row.py │ ├── emph2strikeout.py │ ├── example.md │ ├── fenced-template.py │ ├── header-level-1.py │ ├── include.py │ ├── move-tables.py │ ├── remove-tables.py │ ├── template.py │ ├── toc.py │ ├── valid_file.md │ └── wiki.py │ ├── _templates │ ├── layout.html │ └── sidebar.html │ ├── about.rst │ ├── code.rst │ ├── conf.py │ ├── example.html │ ├── guide.rst │ ├── index.rst │ └── install.rst ├── examples ├── benchmark_output.html ├── input │ ├── LICENSE.txt │ ├── Makefile │ ├── abc-sample.md │ ├── build-table-sample.md │ ├── caps-sample.md │ ├── comments-sample.md │ ├── deemph-sample.md │ ├── deflists-sample.md │ ├── gabc-sample.md │ ├── gabc-score.gabc │ ├── graphviz-sample.md │ ├── headers.md │ ├── lilypond-sample.md │ ├── lilypond-score.ly │ ├── metavars-sample.md │ ├── myemph-sample.md │ ├── plantuml-sample.md │ ├── table-sample.md │ ├── theorem-sample.md │ └── tikz-sample.md ├── make.py ├── pandocfilters │ ├── LICENSE.txt │ ├── abc.py │ ├── caps.py │ ├── comments.py │ ├── deemph.py │ ├── deflists.py │ ├── gabc.py │ ├── graphviz.py │ ├── lilypond.py │ ├── metavars.py │ ├── myemph.py │ ├── plantuml.py │ ├── theorem.py │ └── tikz.py ├── panflute │ ├── abc.py │ ├── build-table.py │ ├── caps.py │ ├── comments.py │ ├── deemph.py │ ├── deflists.py │ ├── gabc.py │ ├── graphviz.py │ ├── headers.py │ ├── lilypond.py │ ├── metavars.py │ ├── myemph.py │ ├── table-better.py │ ├── table.py │ ├── theorem.py │ └── tikz.py └── panflute_output.html ├── extra ├── panflute-fenced.sublime-snippet └── panflute.sublime-snippet ├── misc └── CLI_Wrapper.md ├── panflute ├── __init__.py ├── autofilter.py ├── base.py ├── borrar.txt ├── containers.py ├── elements.py ├── io.py ├── table_elements.py ├── tools.py ├── utils.py └── version.py ├── pyproject.toml ├── requirements.txt └── tests ├── README.md ├── __init__.py ├── autofilter └── input.md ├── borrar.md ├── dependency └── dependency.py ├── fenced ├── input.json └── output.json ├── filters ├── assert_env.py ├── do_nothing.py └── underline.py ├── input ├── awesome-c │ ├── benchmark.json │ ├── index.md │ ├── make.txt │ ├── notes.txt │ ├── panflute.json │ ├── profiler.py │ ├── source.txt │ └── test.py ├── barcode │ ├── benchmark.json │ ├── index.md │ ├── make.txt │ ├── notes.txt │ ├── panflute.json │ ├── source.txt │ └── test.py └── portugal │ ├── benchmark.json │ ├── index.md │ ├── make.txt │ ├── notes.txt │ ├── panflute.json │ ├── source.txt │ └── test.py ├── md2json.txt ├── requirements.txt ├── sample_files ├── abstract │ └── example.md ├── example1 │ ├── example.bib │ └── example.md ├── example2 │ └── example.md ├── example3 │ ├── example.md │ └── results.md ├── example4 │ └── example.md ├── fenced │ └── example.md ├── heavy_metadata │ └── example.md ├── native │ ├── README.md │ ├── nordics.native │ ├── planets.native │ └── students.native └── pandoc-2.11 │ └── example.md ├── temp_benchmark.txt ├── temp_panflute.txt ├── test_basics.py ├── test_context_import.py ├── test_convert_text.py ├── test_elements.py ├── test_env.py ├── test_equality.py ├── test_examples_run.py ├── test_fenced.py ├── test_get_metadata.py ├── test_get_option.py ├── test_panfl.py ├── test_panfl ├── bar │ └── test_filter.py └── foo │ ├── __init__.py │ └── test_filter.py ├── test_regressions.py ├── test_standalone.py ├── test_stringify.py └── test_walk.py /.github/workflows/force-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/.github/workflows/force-publish.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/run_tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/.github/workflows/run_tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DISTRIBUTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/DISTRIBUTION.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/README.md -------------------------------------------------------------------------------- /docs/help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/docs/help.txt -------------------------------------------------------------------------------- /docs/howtobuild.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/docs/howtobuild.txt -------------------------------------------------------------------------------- /docs/source/_static/autofilters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/docs/source/_static/autofilters.md -------------------------------------------------------------------------------- /docs/source/_static/css/panflute.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/docs/source/_static/css/panflute.css -------------------------------------------------------------------------------- /docs/source/_static/csv-tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/docs/source/_static/csv-tables.py -------------------------------------------------------------------------------- /docs/source/_static/emph-last-row.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/docs/source/_static/emph-last-row.py -------------------------------------------------------------------------------- /docs/source/_static/emph2strikeout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/docs/source/_static/emph2strikeout.py -------------------------------------------------------------------------------- /docs/source/_static/example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/docs/source/_static/example.md -------------------------------------------------------------------------------- /docs/source/_static/fenced-template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/docs/source/_static/fenced-template.py -------------------------------------------------------------------------------- /docs/source/_static/header-level-1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/docs/source/_static/header-level-1.py -------------------------------------------------------------------------------- /docs/source/_static/include.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/docs/source/_static/include.py -------------------------------------------------------------------------------- /docs/source/_static/move-tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/docs/source/_static/move-tables.py -------------------------------------------------------------------------------- /docs/source/_static/remove-tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/docs/source/_static/remove-tables.py -------------------------------------------------------------------------------- /docs/source/_static/template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/docs/source/_static/template.py -------------------------------------------------------------------------------- /docs/source/_static/toc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/docs/source/_static/toc.py -------------------------------------------------------------------------------- /docs/source/_static/valid_file.md: -------------------------------------------------------------------------------- 1 | ### Header lvl 3 2 | 3 | This will be *included* to the root **element** -------------------------------------------------------------------------------- /docs/source/_static/wiki.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/docs/source/_static/wiki.py -------------------------------------------------------------------------------- /docs/source/_templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/docs/source/_templates/layout.html -------------------------------------------------------------------------------- /docs/source/_templates/sidebar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/docs/source/_templates/sidebar.html -------------------------------------------------------------------------------- /docs/source/about.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/docs/source/about.rst -------------------------------------------------------------------------------- /docs/source/code.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/docs/source/code.rst -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/docs/source/example.html -------------------------------------------------------------------------------- /docs/source/guide.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/docs/source/guide.rst -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/install.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/docs/source/install.rst -------------------------------------------------------------------------------- /examples/benchmark_output.html: -------------------------------------------------------------------------------- 1 |

THIS IS THE CAPS SAMPLE WITH Äüö.

2 | -------------------------------------------------------------------------------- /examples/input/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/examples/input/LICENSE.txt -------------------------------------------------------------------------------- /examples/input/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/examples/input/Makefile -------------------------------------------------------------------------------- /examples/input/abc-sample.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/examples/input/abc-sample.md -------------------------------------------------------------------------------- /examples/input/build-table-sample.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/examples/input/build-table-sample.md -------------------------------------------------------------------------------- /examples/input/caps-sample.md: -------------------------------------------------------------------------------- 1 | 2 | This is the caps sample with lorem. -------------------------------------------------------------------------------- /examples/input/comments-sample.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/examples/input/comments-sample.md -------------------------------------------------------------------------------- /examples/input/deemph-sample.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/examples/input/deemph-sample.md -------------------------------------------------------------------------------- /examples/input/deflists-sample.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/examples/input/deflists-sample.md -------------------------------------------------------------------------------- /examples/input/gabc-sample.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/examples/input/gabc-sample.md -------------------------------------------------------------------------------- /examples/input/gabc-score.gabc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/examples/input/gabc-score.gabc -------------------------------------------------------------------------------- /examples/input/graphviz-sample.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/examples/input/graphviz-sample.md -------------------------------------------------------------------------------- /examples/input/headers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/examples/input/headers.md -------------------------------------------------------------------------------- /examples/input/lilypond-sample.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/examples/input/lilypond-sample.md -------------------------------------------------------------------------------- /examples/input/lilypond-score.ly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/examples/input/lilypond-score.ly -------------------------------------------------------------------------------- /examples/input/metavars-sample.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/examples/input/metavars-sample.md -------------------------------------------------------------------------------- /examples/input/myemph-sample.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/examples/input/myemph-sample.md -------------------------------------------------------------------------------- /examples/input/plantuml-sample.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/examples/input/plantuml-sample.md -------------------------------------------------------------------------------- /examples/input/table-sample.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/examples/input/table-sample.md -------------------------------------------------------------------------------- /examples/input/theorem-sample.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/examples/input/theorem-sample.md -------------------------------------------------------------------------------- /examples/input/tikz-sample.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/examples/input/tikz-sample.md -------------------------------------------------------------------------------- /examples/make.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/examples/make.py -------------------------------------------------------------------------------- /examples/pandocfilters/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/examples/pandocfilters/LICENSE.txt -------------------------------------------------------------------------------- /examples/pandocfilters/abc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/examples/pandocfilters/abc.py -------------------------------------------------------------------------------- /examples/pandocfilters/caps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/examples/pandocfilters/caps.py -------------------------------------------------------------------------------- /examples/pandocfilters/comments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/examples/pandocfilters/comments.py -------------------------------------------------------------------------------- /examples/pandocfilters/deemph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/examples/pandocfilters/deemph.py -------------------------------------------------------------------------------- /examples/pandocfilters/deflists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/examples/pandocfilters/deflists.py -------------------------------------------------------------------------------- /examples/pandocfilters/gabc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/examples/pandocfilters/gabc.py -------------------------------------------------------------------------------- /examples/pandocfilters/graphviz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/examples/pandocfilters/graphviz.py -------------------------------------------------------------------------------- /examples/pandocfilters/lilypond.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/examples/pandocfilters/lilypond.py -------------------------------------------------------------------------------- /examples/pandocfilters/metavars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/examples/pandocfilters/metavars.py -------------------------------------------------------------------------------- /examples/pandocfilters/myemph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/examples/pandocfilters/myemph.py -------------------------------------------------------------------------------- /examples/pandocfilters/plantuml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/examples/pandocfilters/plantuml.py -------------------------------------------------------------------------------- /examples/pandocfilters/theorem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/examples/pandocfilters/theorem.py -------------------------------------------------------------------------------- /examples/pandocfilters/tikz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/examples/pandocfilters/tikz.py -------------------------------------------------------------------------------- /examples/panflute/abc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/examples/panflute/abc.py -------------------------------------------------------------------------------- /examples/panflute/build-table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/examples/panflute/build-table.py -------------------------------------------------------------------------------- /examples/panflute/caps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/examples/panflute/caps.py -------------------------------------------------------------------------------- /examples/panflute/comments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/examples/panflute/comments.py -------------------------------------------------------------------------------- /examples/panflute/deemph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/examples/panflute/deemph.py -------------------------------------------------------------------------------- /examples/panflute/deflists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/examples/panflute/deflists.py -------------------------------------------------------------------------------- /examples/panflute/gabc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/examples/panflute/gabc.py -------------------------------------------------------------------------------- /examples/panflute/graphviz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/examples/panflute/graphviz.py -------------------------------------------------------------------------------- /examples/panflute/headers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/examples/panflute/headers.py -------------------------------------------------------------------------------- /examples/panflute/lilypond.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/examples/panflute/lilypond.py -------------------------------------------------------------------------------- /examples/panflute/metavars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/examples/panflute/metavars.py -------------------------------------------------------------------------------- /examples/panflute/myemph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/examples/panflute/myemph.py -------------------------------------------------------------------------------- /examples/panflute/table-better.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/examples/panflute/table-better.py -------------------------------------------------------------------------------- /examples/panflute/table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/examples/panflute/table.py -------------------------------------------------------------------------------- /examples/panflute/theorem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/examples/panflute/theorem.py -------------------------------------------------------------------------------- /examples/panflute/tikz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/examples/panflute/tikz.py -------------------------------------------------------------------------------- /examples/panflute_output.html: -------------------------------------------------------------------------------- 1 |

THIS IS THE CAPS SAMPLE WITH ÄÜÖ.

2 | -------------------------------------------------------------------------------- /extra/panflute-fenced.sublime-snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/extra/panflute-fenced.sublime-snippet -------------------------------------------------------------------------------- /extra/panflute.sublime-snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/extra/panflute.sublime-snippet -------------------------------------------------------------------------------- /misc/CLI_Wrapper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/misc/CLI_Wrapper.md -------------------------------------------------------------------------------- /panflute/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/panflute/__init__.py -------------------------------------------------------------------------------- /panflute/autofilter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/panflute/autofilter.py -------------------------------------------------------------------------------- /panflute/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/panflute/base.py -------------------------------------------------------------------------------- /panflute/borrar.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/panflute/borrar.txt -------------------------------------------------------------------------------- /panflute/containers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/panflute/containers.py -------------------------------------------------------------------------------- /panflute/elements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/panflute/elements.py -------------------------------------------------------------------------------- /panflute/io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/panflute/io.py -------------------------------------------------------------------------------- /panflute/table_elements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/panflute/table_elements.py -------------------------------------------------------------------------------- /panflute/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/panflute/tools.py -------------------------------------------------------------------------------- /panflute/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/panflute/utils.py -------------------------------------------------------------------------------- /panflute/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/panflute/version.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pyyaml 2 | click 3 | -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/tests/README.md -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/autofilter/input.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/tests/autofilter/input.md -------------------------------------------------------------------------------- /tests/borrar.md: -------------------------------------------------------------------------------- 1 | 2 | @asd -------------------------------------------------------------------------------- /tests/dependency/dependency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/tests/dependency/dependency.py -------------------------------------------------------------------------------- /tests/fenced/input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/tests/fenced/input.json -------------------------------------------------------------------------------- /tests/fenced/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/tests/fenced/output.json -------------------------------------------------------------------------------- /tests/filters/assert_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/tests/filters/assert_env.py -------------------------------------------------------------------------------- /tests/filters/do_nothing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/tests/filters/do_nothing.py -------------------------------------------------------------------------------- /tests/filters/underline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/tests/filters/underline.py -------------------------------------------------------------------------------- /tests/input/awesome-c/benchmark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/tests/input/awesome-c/benchmark.json -------------------------------------------------------------------------------- /tests/input/awesome-c/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/tests/input/awesome-c/index.md -------------------------------------------------------------------------------- /tests/input/awesome-c/make.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/tests/input/awesome-c/make.txt -------------------------------------------------------------------------------- /tests/input/awesome-c/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/tests/input/awesome-c/notes.txt -------------------------------------------------------------------------------- /tests/input/awesome-c/panflute.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/tests/input/awesome-c/panflute.json -------------------------------------------------------------------------------- /tests/input/awesome-c/profiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/tests/input/awesome-c/profiler.py -------------------------------------------------------------------------------- /tests/input/awesome-c/source.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/tests/input/awesome-c/source.txt -------------------------------------------------------------------------------- /tests/input/awesome-c/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/tests/input/awesome-c/test.py -------------------------------------------------------------------------------- /tests/input/barcode/benchmark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/tests/input/barcode/benchmark.json -------------------------------------------------------------------------------- /tests/input/barcode/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/tests/input/barcode/index.md -------------------------------------------------------------------------------- /tests/input/barcode/make.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/tests/input/barcode/make.txt -------------------------------------------------------------------------------- /tests/input/barcode/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/tests/input/barcode/notes.txt -------------------------------------------------------------------------------- /tests/input/barcode/panflute.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/tests/input/barcode/panflute.json -------------------------------------------------------------------------------- /tests/input/barcode/source.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/tests/input/barcode/source.txt -------------------------------------------------------------------------------- /tests/input/barcode/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/tests/input/barcode/test.py -------------------------------------------------------------------------------- /tests/input/portugal/benchmark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/tests/input/portugal/benchmark.json -------------------------------------------------------------------------------- /tests/input/portugal/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/tests/input/portugal/index.md -------------------------------------------------------------------------------- /tests/input/portugal/make.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/tests/input/portugal/make.txt -------------------------------------------------------------------------------- /tests/input/portugal/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/tests/input/portugal/notes.txt -------------------------------------------------------------------------------- /tests/input/portugal/panflute.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/tests/input/portugal/panflute.json -------------------------------------------------------------------------------- /tests/input/portugal/source.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/tests/input/portugal/source.txt -------------------------------------------------------------------------------- /tests/input/portugal/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/tests/input/portugal/test.py -------------------------------------------------------------------------------- /tests/md2json.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/tests/md2json.txt -------------------------------------------------------------------------------- /tests/requirements.txt: -------------------------------------------------------------------------------- 1 | pandocfilters 2 | configparser 3 | pytest-cov 4 | docutils 5 | Pygments 6 | -------------------------------------------------------------------------------- /tests/sample_files/abstract/example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/tests/sample_files/abstract/example.md -------------------------------------------------------------------------------- /tests/sample_files/example1/example.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/tests/sample_files/example1/example.bib -------------------------------------------------------------------------------- /tests/sample_files/example1/example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/tests/sample_files/example1/example.md -------------------------------------------------------------------------------- /tests/sample_files/example2/example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/tests/sample_files/example2/example.md -------------------------------------------------------------------------------- /tests/sample_files/example3/example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/tests/sample_files/example3/example.md -------------------------------------------------------------------------------- /tests/sample_files/example3/results.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/tests/sample_files/example3/results.md -------------------------------------------------------------------------------- /tests/sample_files/example4/example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/tests/sample_files/example4/example.md -------------------------------------------------------------------------------- /tests/sample_files/fenced/example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/tests/sample_files/fenced/example.md -------------------------------------------------------------------------------- /tests/sample_files/heavy_metadata/example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/tests/sample_files/heavy_metadata/example.md -------------------------------------------------------------------------------- /tests/sample_files/native/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/tests/sample_files/native/README.md -------------------------------------------------------------------------------- /tests/sample_files/native/nordics.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/tests/sample_files/native/nordics.native -------------------------------------------------------------------------------- /tests/sample_files/native/planets.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/tests/sample_files/native/planets.native -------------------------------------------------------------------------------- /tests/sample_files/native/students.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/tests/sample_files/native/students.native -------------------------------------------------------------------------------- /tests/sample_files/pandoc-2.11/example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/tests/sample_files/pandoc-2.11/example.md -------------------------------------------------------------------------------- /tests/temp_benchmark.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/tests/temp_benchmark.txt -------------------------------------------------------------------------------- /tests/temp_panflute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/tests/temp_panflute.txt -------------------------------------------------------------------------------- /tests/test_basics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/tests/test_basics.py -------------------------------------------------------------------------------- /tests/test_context_import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/tests/test_context_import.py -------------------------------------------------------------------------------- /tests/test_convert_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/tests/test_convert_text.py -------------------------------------------------------------------------------- /tests/test_elements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/tests/test_elements.py -------------------------------------------------------------------------------- /tests/test_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/tests/test_env.py -------------------------------------------------------------------------------- /tests/test_equality.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/tests/test_equality.py -------------------------------------------------------------------------------- /tests/test_examples_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/tests/test_examples_run.py -------------------------------------------------------------------------------- /tests/test_fenced.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/tests/test_fenced.py -------------------------------------------------------------------------------- /tests/test_get_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/tests/test_get_metadata.py -------------------------------------------------------------------------------- /tests/test_get_option.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/tests/test_get_option.py -------------------------------------------------------------------------------- /tests/test_panfl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/tests/test_panfl.py -------------------------------------------------------------------------------- /tests/test_panfl/bar/test_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/tests/test_panfl/bar/test_filter.py -------------------------------------------------------------------------------- /tests/test_panfl/foo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/tests/test_panfl/foo/__init__.py -------------------------------------------------------------------------------- /tests/test_panfl/foo/test_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/tests/test_panfl/foo/test_filter.py -------------------------------------------------------------------------------- /tests/test_regressions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/tests/test_regressions.py -------------------------------------------------------------------------------- /tests/test_standalone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/tests/test_standalone.py -------------------------------------------------------------------------------- /tests/test_stringify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/tests/test_stringify.py -------------------------------------------------------------------------------- /tests/test_walk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiocorreia/panflute/HEAD/tests/test_walk.py --------------------------------------------------------------------------------