diff --git a/docs/conf.py b/docs/conf.py index b9fbdd8a88392b4fce3b3086ff6f7445a727bc85..ecf6c3a8fc18981cf0179e5089639192b16f2979 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -12,13 +12,11 @@ version = '' # -- General configuration extensions = [ - # 'sphinx.ext.duration', - # 'sphinx.ext.doctest', - # 'sphinx.ext.autodoc', - # 'sphinx.ext.autosummary', - # 'sphinx.ext.intersphinx', + 'myst_parser' ] +source_suffix = ['.rst', '.md'] + # intersphinx_mapping = { # 'python': ('https://docs.python.org/3/', None), # 'sphinx': ('https://www.sphinx-doc.org/en/master/', None), diff --git a/docs/index.rst b/docs/index.rst new file mode 100644 index 0000000000000000000000000000000000000000..4678e953a6b208ac9d46169cd31396df05337259 --- /dev/null +++ b/docs/index.rst @@ -0,0 +1,27 @@ +.. Sphinx with Markdown documentation master file, created by + sphinx-quickstart on Thu Oct 6 19:07:54 2016. + You can adapt this file completely to your liking, but it should at least + contain the root `toctree` directive. + +Batmen documentation +================================================ + +TODO + +Contents: + +.. toctree:: + :maxdepth: 2 + +.. question.md +.. answer.md +.. answer_beni.md + + + +.. Indices and tables +.. ================== + +.. * :ref:`genindex` +.. * :ref:`modindex` +.. * :ref:`search` \ No newline at end of file diff --git a/docs/requirements.txt b/docs/requirements.txt index 52096927cfe0f7e67580a5cc8fae8ad549c8e1f3..10ba562c8985dd6ea5fea6ac06522149aff30953 100644 --- a/docs/requirements.txt +++ b/docs/requirements.txt @@ -1,2 +1,3 @@ sphinx==7.2.6 sphinx_rtd_theme==1.3.0 +myst-parser==3.0.1 \ No newline at end of file