├── .gitignore ├── LICENSE ├── README.md ├── bin ├── marker └── marker.sh ├── install.py ├── marker ├── __init__.py ├── ansi.py ├── command.py ├── core.py ├── filter.py ├── keys.py ├── readchar.py ├── renderer.py ├── string_score.py └── tldr.py └── tldr ├── common.txt ├── linux.txt ├── osx.txt └── sunos.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pindexis/marker/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pindexis/marker/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pindexis/marker/HEAD/README.md -------------------------------------------------------------------------------- /bin/marker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pindexis/marker/HEAD/bin/marker -------------------------------------------------------------------------------- /bin/marker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pindexis/marker/HEAD/bin/marker.sh -------------------------------------------------------------------------------- /install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pindexis/marker/HEAD/install.py -------------------------------------------------------------------------------- /marker/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /marker/ansi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pindexis/marker/HEAD/marker/ansi.py -------------------------------------------------------------------------------- /marker/command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pindexis/marker/HEAD/marker/command.py -------------------------------------------------------------------------------- /marker/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pindexis/marker/HEAD/marker/core.py -------------------------------------------------------------------------------- /marker/filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pindexis/marker/HEAD/marker/filter.py -------------------------------------------------------------------------------- /marker/keys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pindexis/marker/HEAD/marker/keys.py -------------------------------------------------------------------------------- /marker/readchar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pindexis/marker/HEAD/marker/readchar.py -------------------------------------------------------------------------------- /marker/renderer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pindexis/marker/HEAD/marker/renderer.py -------------------------------------------------------------------------------- /marker/string_score.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pindexis/marker/HEAD/marker/string_score.py -------------------------------------------------------------------------------- /marker/tldr.py: -------------------------------------------------------------------------------- 1 | 2 | def update(): 3 | pass 4 | 5 | -------------------------------------------------------------------------------- /tldr/common.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pindexis/marker/HEAD/tldr/common.txt -------------------------------------------------------------------------------- /tldr/linux.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pindexis/marker/HEAD/tldr/linux.txt -------------------------------------------------------------------------------- /tldr/osx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pindexis/marker/HEAD/tldr/osx.txt -------------------------------------------------------------------------------- /tldr/sunos.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pindexis/marker/HEAD/tldr/sunos.txt --------------------------------------------------------------------------------