├── .github └── workflows │ └── main.yml ├── .gitignore ├── LICENSE ├── Pipfile ├── Pipfile.lock ├── README.md └── docs ├── Makefile ├── answer.md ├── answer_beni.md ├── conf.py ├── index.rst ├── make.bat └── question.md /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serra/sphinx-with-markdown/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serra/sphinx-with-markdown/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serra/sphinx-with-markdown/HEAD/LICENSE -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serra/sphinx-with-markdown/HEAD/Pipfile -------------------------------------------------------------------------------- /Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serra/sphinx-with-markdown/HEAD/Pipfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serra/sphinx-with-markdown/HEAD/README.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serra/sphinx-with-markdown/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/answer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serra/sphinx-with-markdown/HEAD/docs/answer.md -------------------------------------------------------------------------------- /docs/answer_beni.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serra/sphinx-with-markdown/HEAD/docs/answer_beni.md -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serra/sphinx-with-markdown/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serra/sphinx-with-markdown/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serra/sphinx-with-markdown/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serra/sphinx-with-markdown/HEAD/docs/question.md --------------------------------------------------------------------------------