mirror of https://github.com/containers/podman.git
Merge pull request #8335 from Luap99/fix-html-tables
[CI:DOCS] Fix markdown tables on docs.podman.io
This commit is contained in:
commit
e59394973a
|
|
@ -2,3 +2,5 @@
|
|||
|
||||
# use md instead of rst
|
||||
recommonmark
|
||||
# needed for markdown table support
|
||||
sphinx-markdown-tables
|
||||
|
|
|
|||
|
|
@ -28,9 +28,14 @@ author = "team"
|
|||
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
|
||||
# ones.
|
||||
extensions = [
|
||||
"recommonmark",
|
||||
'sphinx_markdown_tables',
|
||||
]
|
||||
|
||||
source_parsers = {
|
||||
'.md': 'recommonmark.parser.CommonMarkParser',
|
||||
}
|
||||
|
||||
|
||||
# Add any paths that contain templates here, relative to this directory.
|
||||
templates_path = ["_templates"]
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue