Hi there,
I have a question regarding
docutils configuration to control the HTML output generated by sphinx.
I want to change the way that tables are printed when listing command line options. There is an option for that in docutils called
option_limit and I put it in my docutils configuration file in my root sphinx documentation directory:
cat docutils.conf
[general]
dump_settings:1
dunmp_internals:1
[html4css1 writer]
# This makes options span two columns when printed in HTML.
option-limit:1
Thanks to "dump_internals" and "dump_settings", I can see all of the options, including "option-limit", and their values when I execute make html
However, the generated HTML output does not change when I change the "option-limit".
How can I make sphinx use the docutils.conf values when generating HTML output?
Please let me know if you need additional information from me to help solve this problem.