I am using sphinx for generating html documentation for a project. I make extensive use of field lists.
When generating html, each label/value pair is rendered as a single table row with two cells if the lenght of the label is at most 14 characters.
If the label of one pair is longer than 14 characters, the label/values are rendered as two table rows.
I want to increase the wrapping limit to a larger value (e.g. 40). I have found that the limit is controlled by the --field-name-limit
option of docutils. However, I can't find how to set this value through sphinx.
I have created a docutils.conf
file in the documentation root with the following contents:
[general]
dump_settings: 1
dump_internals: 1
[html4css1 writer]
field_name_limit: 40
The file is read when I run sphinx. The settings and internals are printed - because of the values in the [general]
section. Among the printed values, field_name_limit
is printed to have value 40
. Despite all that, the wrapping I described still occurs in the html output.
How do I set the value of field_name_limit
so that I get the desired output?