|
fake project
fake project to demonstrates ACE integration with Doxygen
|
This showcase demonstrates various ways to use ace-cs in a Doxygen documentation.
Here, such documentation is generated using a Markdown index file (see docs/showcase/using_doxygen/index.md).
Q: Why use <div class="ace-cs"> rather than <ace-cs> tags ?
HTMLElements. <div class="ace-cs"> tags which are acs-cs's placeholders for <ace-cs> tags, that are automatically replaced by the ace-cs library.Q: Why the extra <pre></pre> tags ?
HTML, HTML <pre></pre> tag in order to preserve return characters. HTML file in which you don't.
#include <iostream>
auto main() -> int {
auto i = 42;
std::cout << "some console output";
return i;
}