├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── MANIFEST.in ├── README.md ├── docs ├── Makefile ├── api_ref.md ├── auto_structify.md ├── conf.py └── index.md ├── license.md ├── prospector.yml ├── recommonmark ├── __init__.py ├── parser.py ├── scripts.py ├── states.py └── transform.py ├── setup.cfg ├── setup.py ├── tests ├── __init__.py ├── sphinx_code_block │ ├── conf.py │ └── index.md ├── sphinx_custom_md │ ├── conf.py │ └── index.markdown ├── sphinx_generic │ ├── conf.py │ └── index.md ├── sphinx_indented_code │ ├── conf.py │ └── index.md ├── sphinx_nested_header_block │ ├── conf.py │ └── index.md ├── sphinx_xref │ ├── conf.py │ ├── index.md │ └── link.md ├── test_basic.py └── test_sphinx.py └── tox.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readthedocs/recommonmark/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readthedocs/recommonmark/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readthedocs/recommonmark/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readthedocs/recommonmark/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readthedocs/recommonmark/HEAD/README.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readthedocs/recommonmark/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/api_ref.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readthedocs/recommonmark/HEAD/docs/api_ref.md -------------------------------------------------------------------------------- /docs/auto_structify.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readthedocs/recommonmark/HEAD/docs/auto_structify.md -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readthedocs/recommonmark/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- 1 | ../README.md -------------------------------------------------------------------------------- /license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readthedocs/recommonmark/HEAD/license.md -------------------------------------------------------------------------------- /prospector.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readthedocs/recommonmark/HEAD/prospector.yml -------------------------------------------------------------------------------- /recommonmark/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readthedocs/recommonmark/HEAD/recommonmark/__init__.py -------------------------------------------------------------------------------- /recommonmark/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readthedocs/recommonmark/HEAD/recommonmark/parser.py -------------------------------------------------------------------------------- /recommonmark/scripts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readthedocs/recommonmark/HEAD/recommonmark/scripts.py -------------------------------------------------------------------------------- /recommonmark/states.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readthedocs/recommonmark/HEAD/recommonmark/states.py -------------------------------------------------------------------------------- /recommonmark/transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readthedocs/recommonmark/HEAD/recommonmark/transform.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readthedocs/recommonmark/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readthedocs/recommonmark/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/sphinx_code_block/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readthedocs/recommonmark/HEAD/tests/sphinx_code_block/conf.py -------------------------------------------------------------------------------- /tests/sphinx_code_block/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readthedocs/recommonmark/HEAD/tests/sphinx_code_block/index.md -------------------------------------------------------------------------------- /tests/sphinx_custom_md/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readthedocs/recommonmark/HEAD/tests/sphinx_custom_md/conf.py -------------------------------------------------------------------------------- /tests/sphinx_custom_md/index.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readthedocs/recommonmark/HEAD/tests/sphinx_custom_md/index.markdown -------------------------------------------------------------------------------- /tests/sphinx_generic/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readthedocs/recommonmark/HEAD/tests/sphinx_generic/conf.py -------------------------------------------------------------------------------- /tests/sphinx_generic/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readthedocs/recommonmark/HEAD/tests/sphinx_generic/index.md -------------------------------------------------------------------------------- /tests/sphinx_indented_code/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readthedocs/recommonmark/HEAD/tests/sphinx_indented_code/conf.py -------------------------------------------------------------------------------- /tests/sphinx_indented_code/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readthedocs/recommonmark/HEAD/tests/sphinx_indented_code/index.md -------------------------------------------------------------------------------- /tests/sphinx_nested_header_block/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readthedocs/recommonmark/HEAD/tests/sphinx_nested_header_block/conf.py -------------------------------------------------------------------------------- /tests/sphinx_nested_header_block/index.md: -------------------------------------------------------------------------------- 1 | > # Header 2 | -------------------------------------------------------------------------------- /tests/sphinx_xref/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readthedocs/recommonmark/HEAD/tests/sphinx_xref/conf.py -------------------------------------------------------------------------------- /tests/sphinx_xref/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readthedocs/recommonmark/HEAD/tests/sphinx_xref/index.md -------------------------------------------------------------------------------- /tests/sphinx_xref/link.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readthedocs/recommonmark/HEAD/tests/sphinx_xref/link.md -------------------------------------------------------------------------------- /tests/test_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readthedocs/recommonmark/HEAD/tests/test_basic.py -------------------------------------------------------------------------------- /tests/test_sphinx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readthedocs/recommonmark/HEAD/tests/test_sphinx.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readthedocs/recommonmark/HEAD/tox.ini --------------------------------------------------------------------------------