├── .github ├── FUNDING.yml └── workflows │ └── pythonpackage.yml ├── .gitignore ├── LICENSE ├── README.md ├── README.rst ├── docs ├── README.md ├── badges.markdown ├── index.html ├── tests.html └── tests.pdf ├── makefile ├── pancritic ├── __init__.py ├── __main__.py ├── filters.py ├── main.py ├── template.py └── version.py ├── setup.cfg ├── setup.py ├── tests-ref ├── test-1.html ├── test-2.tex ├── test-3.tex ├── test-4.html ├── test-5.md ├── test-6.html ├── test-7.html └── test-8.html └── tests.md /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: [ickc] 4 | -------------------------------------------------------------------------------- /.github/workflows/pythonpackage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ickc/pancritic/HEAD/.github/workflows/pythonpackage.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ickc/pancritic/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ickc/pancritic/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ickc/pancritic/HEAD/README.md -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ickc/pancritic/HEAD/README.rst -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ickc/pancritic/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/badges.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ickc/pancritic/HEAD/docs/badges.markdown -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ickc/pancritic/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/tests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ickc/pancritic/HEAD/docs/tests.html -------------------------------------------------------------------------------- /docs/tests.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ickc/pancritic/HEAD/docs/tests.pdf -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ickc/pancritic/HEAD/makefile -------------------------------------------------------------------------------- /pancritic/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ickc/pancritic/HEAD/pancritic/__init__.py -------------------------------------------------------------------------------- /pancritic/__main__.py: -------------------------------------------------------------------------------- 1 | from .main import cli 2 | 3 | cli() 4 | -------------------------------------------------------------------------------- /pancritic/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ickc/pancritic/HEAD/pancritic/filters.py -------------------------------------------------------------------------------- /pancritic/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ickc/pancritic/HEAD/pancritic/main.py -------------------------------------------------------------------------------- /pancritic/template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ickc/pancritic/HEAD/pancritic/template.py -------------------------------------------------------------------------------- /pancritic/version.py: -------------------------------------------------------------------------------- 1 | __version__ = '0.3.2' 2 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.rst 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ickc/pancritic/HEAD/setup.py -------------------------------------------------------------------------------- /tests-ref/test-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ickc/pancritic/HEAD/tests-ref/test-1.html -------------------------------------------------------------------------------- /tests-ref/test-2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ickc/pancritic/HEAD/tests-ref/test-2.tex -------------------------------------------------------------------------------- /tests-ref/test-3.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ickc/pancritic/HEAD/tests-ref/test-3.tex -------------------------------------------------------------------------------- /tests-ref/test-4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ickc/pancritic/HEAD/tests-ref/test-4.html -------------------------------------------------------------------------------- /tests-ref/test-5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ickc/pancritic/HEAD/tests-ref/test-5.md -------------------------------------------------------------------------------- /tests-ref/test-6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ickc/pancritic/HEAD/tests-ref/test-6.html -------------------------------------------------------------------------------- /tests-ref/test-7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ickc/pancritic/HEAD/tests-ref/test-7.html -------------------------------------------------------------------------------- /tests-ref/test-8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ickc/pancritic/HEAD/tests-ref/test-8.html -------------------------------------------------------------------------------- /tests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ickc/pancritic/HEAD/tests.md --------------------------------------------------------------------------------