[sphinx-users] Re: Sphinx ignores trailing newline "\n" from tabulate rst output

2018-04-10 Thread Jan
I never figured out why Sphinx wasn't recognizing the newline characters "\n", but I solved my problem by reworking my python output (in my conf.py) so that it was a list of lists, and after I use the tabulate function, I split the output on "\n" as such: headers = ['Column Name', 'Data Type',

[sphinx-users] Sphinx ignores trailing newline "\n" from tabulate rst output

2018-04-10 Thread Jan
I'm generating some rst tables in python using the python-tabulate module: headers = ["Column Name", "Data Type", "Length", "Precision", "Scale", "Description"] tabulate_col = tabulate(this_table_columns, tablefmt='rst', headers = headers) The "this_table_columns" variable is a python list

Re: [sphinx-users] is it possible to make inline comment that does not break a paragraph

2018-04-10 Thread Vasyl Vavrychuk
That is exactly what I need. Thanks. On Sun, Apr 8, 2018 at 5:06 PM, Komiya Takeshi wrote: > Hi, > > It is recognized as following: > > > > first item > > comment > > > second item > >