Skip to content

Commit

Permalink
Reverted removal of --- after YAML frontmatter, as breaks doxide clean.
Browse files Browse the repository at this point in the history
  • Loading branch information
lawmurray committed Jan 20, 2024
1 parent a04b2e2 commit 6afdfd3
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/MarkdownGenerator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -223,6 +223,7 @@ std::string MarkdownGenerator::frontmatter(const Entity& entity) {
buf << "title: " << title(entity) << std::endl;
buf << "description: " << line(brief(entity)) << std::endl;
buf << "generator: doxide" << std::endl;
buf << "---" << std::endl;
buf << std::endl;
return buf.str();
}
Expand Down

0 comments on commit 6afdfd3

Please sign in to comment.