grst / geos

Google Earth Overlay Server - display map overlays in Google Earth
https://grst.github.io/geos
BSD 3-Clause "New" or "Revised" License
42 stars 12 forks source link

Add markdown table support for Read the Docs #33

Closed zstadler closed 3 years ago

zstadler commented 3 years ago

By default, Read the Doc's Sphinx engine does not support Markdown tables.

As a result, here we see

image

rather than

image

github.com/ryanfox/sphinx-markdown-tables provides an extension that adds the required support. According to its docs, the solution is to add sphinx_markdown_tables to extensions in conf.py, like so:

extensions = [
    'sphinx_markdown_tables',
]

Note: According to this issue, you may also need to add sphinx_markdown_tables to ReadtheDocs' requirements.txt file.

grst commented 3 years ago

Hi @zstadler,

thanks for the hint, that looks great! I currently don't have a lot of time to maintain this package -- do you want to put a PR together?

Cheers, Gregor