Adding csv tables to github using README.rst

Viewed 1032

So github claims to support reStructured text for the README.md file, and that's great, because I have a bill of materials in a .csv file I would like to add via the following to my README.rst:

.. csv-table::
    :widths: 25 25 25 25
    :file: bom.csv

However, when I view the page on my repository, all I see is the heading (as expected), and some text, but not the table. Further, I don't know where to find any output files from github's internal parsing engine to help me figure out what the problem is. This works just fine when building with sphinx on my local machine (the table is embedded as expected). What is the potential issue here, and how do I view github's internal outputs that would give me a clue as to what is going wrong?

1 Answers
Related