WriteDescriptiveListItem() missing closing tags for dt and dd
This commit is contained in:
parent
f67a251e27
commit
9aec7ca151
2 changed files with 26 additions and 17 deletions
|
@ -335,9 +335,10 @@ func (w *HTMLWriter) WriteDescriptiveListItem(di DescriptiveListItem) {
|
|||
} else {
|
||||
w.WriteString("?")
|
||||
}
|
||||
w.WriteString("</dt>\n")
|
||||
w.WriteString("<dd>\n")
|
||||
WriteNodes(w, di.Details...)
|
||||
w.WriteString("<dd>\n")
|
||||
w.WriteString("</dd>\n")
|
||||
}
|
||||
|
||||
func (w *HTMLWriter) WriteParagraph(p Paragraph) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue