Fix markdown parsing
This commit is contained in:
parent
5e2454243b
commit
332b001533
|
@ -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']
|
||||||
|
|
|
@ -10,7 +10,6 @@ Spaceport Documentation
|
||||||
:maxdepth: 2
|
:maxdepth: 2
|
||||||
:caption: Contents:
|
:caption: Contents:
|
||||||
|
|
||||||
specs
|
|
||||||
dev
|
dev
|
||||||
apioverview
|
apioverview
|
||||||
api
|
api
|
||||||
|
|
Loading…
Reference in New Issue
Block a user