├── LICENSE ├── README.md ├── setup.py └── sphinx_markdown_tables ├── __init__.py └── __version__.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanfox/sphinx-markdown-tables/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanfox/sphinx-markdown-tables/HEAD/README.md -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanfox/sphinx-markdown-tables/HEAD/setup.py -------------------------------------------------------------------------------- /sphinx_markdown_tables/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanfox/sphinx-markdown-tables/HEAD/sphinx_markdown_tables/__init__.py -------------------------------------------------------------------------------- /sphinx_markdown_tables/__version__.py: -------------------------------------------------------------------------------- 1 | __version__ = '0.0.17' 2 | 3 | --------------------------------------------------------------------------------