File tree Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -620,6 +620,7 @@ static std::unique_ptr<HTMLNode> genHTML(const CommentInfo &I) {
620
620
}
621
621
return std::move (FullComment);
622
622
}
623
+
623
624
if (I.Kind == " ParagraphComment" ) {
624
625
auto ParagraphComment = std::make_unique<TagNode>(HTMLTag::TAG_P);
625
626
for (const auto &Child : I.Children ) {
@@ -631,6 +632,7 @@ static std::unique_ptr<HTMLNode> genHTML(const CommentInfo &I) {
631
632
return nullptr ;
632
633
return std::move (ParagraphComment);
633
634
}
635
+
634
636
if (I.Kind == " BlockCommandComment" ) {
635
637
auto BlockComment = std::make_unique<TagNode>(HTMLTag::TAG_DIV);
636
638
auto Command = std::make_unique<TagNode>(HTMLTag::TAG_DIV, I.Name );
Original file line number Diff line number Diff line change @@ -92,7 +92,13 @@ TEST(HTMLGeneratorTest, emitNamespaceHTML) {
92
92
</div>
93
93
<h2 id="Enums">Enums</h2>
94
94
<div>
95
- <h3 id="0000000000000000000000000000000000000000">enum OneEnum</h3>
95
+ <table id=\"0000000000000000000000000000000000000000\">
96
+ <thead>
97
+ <tr>
98
+ <th colspan=\"2\">enum OneEnum</th>
99
+ </tr>
100
+ </thead>
101
+ </table>
96
102
</div>
97
103
</div>
98
104
<div id="sidebar-right" class="col-xs-6 col-sm-6 col-md-2 sidebar sidebar-offcanvas-right">
You can’t perform that action at this time.
0 commit comments