Merge pull request #8335 from Luap99/fix-html-tables

[CI:DOCS] Fix markdown tables on docs.podman.io
This commit is contained in:
OpenShift Merge Robot 2020-11-16 21:40:10 +01:00 committed by GitHub
commit e59394973a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 1 deletions

View File

@ -2,3 +2,5 @@
# use md instead of rst
recommonmark
# needed for markdown table support
sphinx-markdown-tables

View File

@ -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"]