Skip to content
This repository has been archived by the owner on Oct 20, 2022. It is now read-only.

Commit

Permalink
Use plainPrinter for initializer
Browse files Browse the repository at this point in the history
  • Loading branch information
xuhongxu96 committed Aug 24, 2021
1 parent c09318e commit 8201b7b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Doxybook/Node.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -431,7 +431,7 @@ Doxybook2::Node::Data Doxybook2::Node::loadData(const Config& config,
data.definition = definition.getText();
auto initializer = element.firstChildElement("initializer");
if (initializer) {
data.initializer = markdownPrinter.print(XmlTextParser::parsePara(initializer));
data.initializer = plainPrinter.print(XmlTextParser::parsePara(initializer));
}

const auto argsstring = element.firstChildElement("argsstring");
Expand Down

0 comments on commit 8201b7b

Please # to comment.