├── .gitignore ├── Makefile ├── README.md ├── conf.py ├── index.rst ├── markdown.md ├── requirements.txt └── rst.rst /.gitignore: -------------------------------------------------------------------------------- 1 | _build 2 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericholscher/sphinx-markdown-test/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericholscher/sphinx-markdown-test/HEAD/README.md -------------------------------------------------------------------------------- /conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericholscher/sphinx-markdown-test/HEAD/conf.py -------------------------------------------------------------------------------- /index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericholscher/sphinx-markdown-test/HEAD/index.rst -------------------------------------------------------------------------------- /markdown.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericholscher/sphinx-markdown-test/HEAD/markdown.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericholscher/sphinx-markdown-test/HEAD/requirements.txt -------------------------------------------------------------------------------- /rst.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericholscher/sphinx-markdown-test/HEAD/rst.rst --------------------------------------------------------------------------------