Hello. I am observing something strange in the HTML generated by sphinx v1.0.1 using the following test.rst file:
=================================== .. option:: -first text :note: abcde .. option:: -second text :note: abcde .. option:: -third text :note: abcde =================================== The three :note: markers are as follows (probably depending on the used indentations): =================================== ... <tr class="field"><th class="field-name">note:</th><td class="field- body">abcde</td> ... <tr class="field"><th class="field-name">Note :</th><td class="field- body">abcde</td> ... <tr class="field"><th class="field-name">note:</th><td class="field- body">abcde</td> ... =================================== In particular, when processing the "second" :note:, we obtain "Note :" rather than "note:" Apart from the capitalization, there is a spurious space before the colon. Is this a bug in sphinx? Enea. -- You received this message because you are subscribed to the Google Groups "sphinx-dev" group. To post to this group, send email to sphinx-dev@googlegroups.com. To unsubscribe from this group, send email to sphinx-dev+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/sphinx-dev?hl=en.