diff options
author | Nejc Habjan <hab.nejc@gmail.com> | 2021-06-28 22:18:20 +0200 |
---|---|---|
committer | John Villalovos <john@sodarock.com> | 2021-09-12 16:47:10 -0700 |
commit | 90da8ba0342ebd42b8ec3d5b0d4c5fbb5e701117 (patch) | |
tree | a33780d6c38302ccaaaff75f56bcde27da88e11b /docs/conf.py | |
parent | ce4bc0daef355e2d877360c6e496c23856138872 (diff) | |
download | gitlab-90da8ba0342ebd42b8ec3d5b0d4c5fbb5e701117.tar.gz |
docs: consolidate changelogs and remove v3 API docs
Diffstat (limited to 'docs/conf.py')
-rw-r--r-- | docs/conf.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/conf.py b/docs/conf.py index 5fb760b..9e0ad83 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -38,6 +38,7 @@ sys.path.insert(0, os.path.abspath("..")) # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom # ones. extensions = [ + "myst_parser", "sphinx.ext.autodoc", "sphinx.ext.autosummary", "ext.docstrings", @@ -48,7 +49,7 @@ extensions = [ templates_path = ["_templates"] # The suffix of source filenames. -source_suffix = ".rst" +source_suffix = {".rst": "restructuredtext", ".md": "markdown"} # The encoding of source files. # source_encoding = 'utf-8-sig' |