├── .gitignore ├── COPYING ├── ChangeLog ├── README.md ├── ToDo.FAQ ├── ToDo.md ├── create_windows_distributions.py ├── examples └── md2epub.py ├── gleetex ├── __init__.py ├── __main__.py ├── cachedconverter.py ├── caching.py ├── htmlhandling.py ├── image.py ├── pandoc.py ├── parser.py ├── sink.py ├── typesetting.py └── unicode.py ├── manpage.md ├── pyproject.toml ├── runtests ├── setup.cfg ├── setup.py ├── tests ├── test___main__.py ├── test_cachedconverter.py ├── test_caching.py ├── test_htmlhandling.py ├── test_imagecreation.py ├── test_pandoc.py └── test_typesetting.py └── update_unicode_table.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humenda/GladTeX/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humenda/GladTeX/HEAD/COPYING -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humenda/GladTeX/HEAD/ChangeLog -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humenda/GladTeX/HEAD/README.md -------------------------------------------------------------------------------- /ToDo.FAQ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humenda/GladTeX/HEAD/ToDo.FAQ -------------------------------------------------------------------------------- /ToDo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humenda/GladTeX/HEAD/ToDo.md -------------------------------------------------------------------------------- /create_windows_distributions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humenda/GladTeX/HEAD/create_windows_distributions.py -------------------------------------------------------------------------------- /examples/md2epub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humenda/GladTeX/HEAD/examples/md2epub.py -------------------------------------------------------------------------------- /gleetex/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humenda/GladTeX/HEAD/gleetex/__init__.py -------------------------------------------------------------------------------- /gleetex/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humenda/GladTeX/HEAD/gleetex/__main__.py -------------------------------------------------------------------------------- /gleetex/cachedconverter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humenda/GladTeX/HEAD/gleetex/cachedconverter.py -------------------------------------------------------------------------------- /gleetex/caching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humenda/GladTeX/HEAD/gleetex/caching.py -------------------------------------------------------------------------------- /gleetex/htmlhandling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humenda/GladTeX/HEAD/gleetex/htmlhandling.py -------------------------------------------------------------------------------- /gleetex/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humenda/GladTeX/HEAD/gleetex/image.py -------------------------------------------------------------------------------- /gleetex/pandoc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humenda/GladTeX/HEAD/gleetex/pandoc.py -------------------------------------------------------------------------------- /gleetex/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humenda/GladTeX/HEAD/gleetex/parser.py -------------------------------------------------------------------------------- /gleetex/sink.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humenda/GladTeX/HEAD/gleetex/sink.py -------------------------------------------------------------------------------- /gleetex/typesetting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humenda/GladTeX/HEAD/gleetex/typesetting.py -------------------------------------------------------------------------------- /gleetex/unicode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humenda/GladTeX/HEAD/gleetex/unicode.py -------------------------------------------------------------------------------- /manpage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humenda/GladTeX/HEAD/manpage.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- 1 | [tool.black] 2 | line-length = 88 3 | target-version = ['py36'] 4 | -------------------------------------------------------------------------------- /runtests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humenda/GladTeX/HEAD/runtests -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.md 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humenda/GladTeX/HEAD/setup.py -------------------------------------------------------------------------------- /tests/test___main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humenda/GladTeX/HEAD/tests/test___main__.py -------------------------------------------------------------------------------- /tests/test_cachedconverter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humenda/GladTeX/HEAD/tests/test_cachedconverter.py -------------------------------------------------------------------------------- /tests/test_caching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humenda/GladTeX/HEAD/tests/test_caching.py -------------------------------------------------------------------------------- /tests/test_htmlhandling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humenda/GladTeX/HEAD/tests/test_htmlhandling.py -------------------------------------------------------------------------------- /tests/test_imagecreation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humenda/GladTeX/HEAD/tests/test_imagecreation.py -------------------------------------------------------------------------------- /tests/test_pandoc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humenda/GladTeX/HEAD/tests/test_pandoc.py -------------------------------------------------------------------------------- /tests/test_typesetting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humenda/GladTeX/HEAD/tests/test_typesetting.py -------------------------------------------------------------------------------- /update_unicode_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humenda/GladTeX/HEAD/update_unicode_table.py --------------------------------------------------------------------------------