├── .git-blame-ignore-revs ├── .github └── workflows │ └── main.yml ├── .gitignore ├── .readthedocs.yaml ├── LICENSE ├── MANIFEST.in ├── README.rst ├── changelog ├── docs ├── changelog.rst ├── conf.py ├── custom_markups.rst ├── index.rst ├── interface.rst ├── overview.rst ├── requirements.txt └── standard_markups.rst ├── markup2html.py ├── markups ├── __init__.py ├── abstract.py ├── asciidoc.py ├── common.py ├── markdown.py ├── py.typed ├── restructuredtext.py └── textile.py ├── pyproject.toml └── tests ├── __init__.py ├── test_asciidoc.py ├── test_markdown.py ├── test_public_api.py ├── test_restructuredtext.py └── test_textile.py /.git-blame-ignore-revs: -------------------------------------------------------------------------------- 1 | 1600ac428aa7eb0db31fc0a53a1dcdb7ea827f64 2 | -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retext-project/pymarkups/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | dist 3 | MANIFEST 4 | Markups.egg-info 5 | __pycache__ 6 | *.pyc 7 | -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retext-project/pymarkups/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retext-project/pymarkups/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retext-project/pymarkups/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retext-project/pymarkups/HEAD/README.rst -------------------------------------------------------------------------------- /changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retext-project/pymarkups/HEAD/changelog -------------------------------------------------------------------------------- /docs/changelog.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retext-project/pymarkups/HEAD/docs/changelog.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retext-project/pymarkups/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/custom_markups.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retext-project/pymarkups/HEAD/docs/custom_markups.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retext-project/pymarkups/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/interface.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retext-project/pymarkups/HEAD/docs/interface.rst -------------------------------------------------------------------------------- /docs/overview.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retext-project/pymarkups/HEAD/docs/overview.rst -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- 1 | Sphinx>=3.4 2 | -------------------------------------------------------------------------------- /docs/standard_markups.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retext-project/pymarkups/HEAD/docs/standard_markups.rst -------------------------------------------------------------------------------- /markup2html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retext-project/pymarkups/HEAD/markup2html.py -------------------------------------------------------------------------------- /markups/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retext-project/pymarkups/HEAD/markups/__init__.py -------------------------------------------------------------------------------- /markups/abstract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retext-project/pymarkups/HEAD/markups/abstract.py -------------------------------------------------------------------------------- /markups/asciidoc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retext-project/pymarkups/HEAD/markups/asciidoc.py -------------------------------------------------------------------------------- /markups/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retext-project/pymarkups/HEAD/markups/common.py -------------------------------------------------------------------------------- /markups/markdown.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retext-project/pymarkups/HEAD/markups/markdown.py -------------------------------------------------------------------------------- /markups/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /markups/restructuredtext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retext-project/pymarkups/HEAD/markups/restructuredtext.py -------------------------------------------------------------------------------- /markups/textile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retext-project/pymarkups/HEAD/markups/textile.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retext-project/pymarkups/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_asciidoc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retext-project/pymarkups/HEAD/tests/test_asciidoc.py -------------------------------------------------------------------------------- /tests/test_markdown.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retext-project/pymarkups/HEAD/tests/test_markdown.py -------------------------------------------------------------------------------- /tests/test_public_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retext-project/pymarkups/HEAD/tests/test_public_api.py -------------------------------------------------------------------------------- /tests/test_restructuredtext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retext-project/pymarkups/HEAD/tests/test_restructuredtext.py -------------------------------------------------------------------------------- /tests/test_textile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retext-project/pymarkups/HEAD/tests/test_textile.py --------------------------------------------------------------------------------