We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8eca15b + 6a87ba4 commit 7b2dd80Copy full SHA for 7b2dd80
CHANGES
@@ -30,6 +30,7 @@ Bugs fixed
30
* #6245: circular import error on importing SerializingHTMLBuilder
31
* #6243: LaTeX: 'releasename' setting for latex_elements is ignored
32
* #6244: html: Search function is broken with 3rd party themes
33
+* #6263: html: HTML5Translator crashed with invalid field node
34
* #6262: html theme: The style of field lists has changed in bizstyle theme
35
36
Testing
sphinx/writers/html5.py
@@ -68,6 +68,7 @@ def __init__(self, *args):
68
self.param_separator = ''
69
self.optional_param_level = 0
70
self._table_row_index = 0
71
+ self._fieldlist_row_index = 0
72
self.required_params_left = 0
73
74
def visit_start_of_file(self, node):
0 commit comments