Skip to content

Commit 54b1202

Browse files
committed
issue doxygen#12111 Requirements output for LaTeX is not good
`<div>` tags are only shown in HTML output, so we need a "breaking" tag in between.
1 parent 83b17ce commit 54b1202

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/requirement.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ void RequirementManager::generatePage()
218218
doc += "</span> ";
219219
doc += "</td><td>";
220220
doc += "<div class=\"req_title\">"+req->title()+"</div>";
221-
doc += "<div class=\"req_docs\">";
221+
doc += "<p/><div class=\"req_docs\">";
222222
doc += req->doc();
223223
req->sortReferences();
224224
auto symToString = [](const Definition *sym)

0 commit comments

Comments
 (0)