├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── setup.py ├── termpub ├── __init__.py ├── __main__.py ├── commands.py ├── epub.py ├── exec.py ├── graphemebuffer.py ├── pager.py ├── reader.py ├── readline.py ├── renderer.py ├── urls.py └── width.py └── tests ├── render_tests ├── 01.txt ├── 02.txt ├── 03.txt ├── 04.txt ├── 05.txt ├── li.txt ├── links.txt ├── nested_lists.txt └── pre.txt ├── test_buffer.py └── test_renderer.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdom/termpub/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdom/termpub/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdom/termpub/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdom/termpub/HEAD/README.md -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdom/termpub/HEAD/setup.py -------------------------------------------------------------------------------- /termpub/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /termpub/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdom/termpub/HEAD/termpub/__main__.py -------------------------------------------------------------------------------- /termpub/commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdom/termpub/HEAD/termpub/commands.py -------------------------------------------------------------------------------- /termpub/epub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdom/termpub/HEAD/termpub/epub.py -------------------------------------------------------------------------------- /termpub/exec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdom/termpub/HEAD/termpub/exec.py -------------------------------------------------------------------------------- /termpub/graphemebuffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdom/termpub/HEAD/termpub/graphemebuffer.py -------------------------------------------------------------------------------- /termpub/pager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdom/termpub/HEAD/termpub/pager.py -------------------------------------------------------------------------------- /termpub/reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdom/termpub/HEAD/termpub/reader.py -------------------------------------------------------------------------------- /termpub/readline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdom/termpub/HEAD/termpub/readline.py -------------------------------------------------------------------------------- /termpub/renderer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdom/termpub/HEAD/termpub/renderer.py -------------------------------------------------------------------------------- /termpub/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdom/termpub/HEAD/termpub/urls.py -------------------------------------------------------------------------------- /termpub/width.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdom/termpub/HEAD/termpub/width.py -------------------------------------------------------------------------------- /tests/render_tests/01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdom/termpub/HEAD/tests/render_tests/01.txt -------------------------------------------------------------------------------- /tests/render_tests/02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdom/termpub/HEAD/tests/render_tests/02.txt -------------------------------------------------------------------------------- /tests/render_tests/03.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdom/termpub/HEAD/tests/render_tests/03.txt -------------------------------------------------------------------------------- /tests/render_tests/04.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdom/termpub/HEAD/tests/render_tests/04.txt -------------------------------------------------------------------------------- /tests/render_tests/05.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdom/termpub/HEAD/tests/render_tests/05.txt -------------------------------------------------------------------------------- /tests/render_tests/li.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdom/termpub/HEAD/tests/render_tests/li.txt -------------------------------------------------------------------------------- /tests/render_tests/links.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdom/termpub/HEAD/tests/render_tests/links.txt -------------------------------------------------------------------------------- /tests/render_tests/nested_lists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdom/termpub/HEAD/tests/render_tests/nested_lists.txt -------------------------------------------------------------------------------- /tests/render_tests/pre.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdom/termpub/HEAD/tests/render_tests/pre.txt -------------------------------------------------------------------------------- /tests/test_buffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdom/termpub/HEAD/tests/test_buffer.py -------------------------------------------------------------------------------- /tests/test_renderer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdom/termpub/HEAD/tests/test_renderer.py --------------------------------------------------------------------------------