File tree Expand file tree Collapse file tree 1 file changed +0
-3
lines changed Expand file tree Collapse file tree 1 file changed +0
-3
lines changed Original file line number Diff line number Diff line change @@ -620,7 +620,6 @@ static std::unique_ptr<HTMLNode> genHTML(const CommentInfo &I) {
620
620
}
621
621
return std::move (FullComment);
622
622
}
623
-
624
623
if (I.Kind == " ParagraphComment" ) {
625
624
auto ParagraphComment = std::make_unique<TagNode>(HTMLTag::TAG_P);
626
625
for (const auto &Child : I.Children ) {
@@ -632,7 +631,6 @@ static std::unique_ptr<HTMLNode> genHTML(const CommentInfo &I) {
632
631
return nullptr ;
633
632
return std::move (ParagraphComment);
634
633
}
635
-
636
634
if (I.Kind == " BlockCommandComment" ) {
637
635
auto BlockComment = std::make_unique<TagNode>(HTMLTag::TAG_DIV);
638
636
auto Command = std::make_unique<TagNode>(HTMLTag::TAG_DIV, I.Name );
@@ -646,7 +644,6 @@ static std::unique_ptr<HTMLNode> genHTML(const CommentInfo &I) {
646
644
return nullptr ;
647
645
return std::move (BlockComment);
648
646
}
649
-
650
647
if (I.Kind == " TextComment" ) {
651
648
if (I.Text == " " )
652
649
return nullptr ;
You can’t perform that action at this time.
0 commit comments