Fix markdown parsing

This commit is contained in:
Tanner Collin 2022-03-23 19:09:00 +00:00
parent 5e2454243b
commit 332b001533
2 changed files with 2 additions and 5 deletions

View File

@ -14,8 +14,6 @@
# import sys # import sys
# sys.path.insert(0, os.path.abspath('.')) # sys.path.insert(0, os.path.abspath('.'))
from recommonmark.parser import CommonMarkParser
# -- Project information ----------------------------------------------------- # -- Project information -----------------------------------------------------
project = 'Spaceport' project = 'Spaceport'
@ -29,13 +27,13 @@ author = 'Tanner Collin'
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
# ones. # ones.
extensions = [ extensions = [
'recommonmark', 'myst_parser',
] ]
source_suffix = ['.rst', '.md'] source_suffix = ['.rst', '.md']
source_parsers = { source_parsers = {
'.md': 'CommonMarkParser', '.md': 'markdown',
} }
known_url_schemes = ['http', 'https'] known_url_schemes = ['http', 'https']

View File

@ -10,7 +10,6 @@ Spaceport Documentation
:maxdepth: 2 :maxdepth: 2
:caption: Contents: :caption: Contents:
specs
dev dev
apioverview apioverview
api api