Add Markdown support

This commit is contained in:
Daniil Baturin 2022-01-24 17:31:21 +07:00
parent 31a3565592
commit 3b32e15fe4
3 changed files with 4 additions and 4 deletions

View File

@ -46,6 +46,7 @@ extensions = ['sphinx.ext.intersphinx',
'sphinx.ext.graphviz', 'sphinx.ext.graphviz',
'notfound.extension', 'notfound.extension',
'autosectionlabel', 'autosectionlabel',
'myst_parser',
'vyos' 'vyos'
] ]
@ -60,7 +61,7 @@ autosectionlabel_prefix_document = True
# You can specify multiple suffix as a list of string: # You can specify multiple suffix as a list of string:
# #
# source_suffix = ['.rst', '.md'] # source_suffix = ['.rst', '.md']
source_suffix = '.rst' source_suffix = ['.rst', '.md']
# The master toctree document. # The master toctree document.
master_doc = 'index' master_doc = 'index'

View File

@ -1,6 +1,4 @@
################ # Copyright Notice
Copyright Notice
################
Copyright (C) 2018-2022 VyOS maintainers and contributors Copyright (C) 2018-2022 VyOS maintainers and contributors

View File

@ -5,3 +5,4 @@ docutils
lxml lxml
sphinx-notfound-page sphinx-notfound-page
docutils<0.18 docutils<0.18
myst-parser