use doxygen as github pages in docs/

This commit is contained in:
Johann Dreo 2020-10-18 17:01:56 +02:00
commit 7e75e8fb13
171 changed files with 10089 additions and 5 deletions

View file

@ -21,8 +21,8 @@ int main(/*const int argc, char* argv[]*/)
log.threshold(clutchlog::level::info);
// Change a style.
log.style(clutchlog::level::quiet, error);
CLUTCHLOG(quiet,"Styles demo");
log.style(clutchlog::level::critical, error);
CLUTCHLOG(critical,"Styles demo");
CLUTCHLOG(info,"Either using functions...");
std::cout << none("No style: ") << std::endl;
@ -41,5 +41,5 @@ int main(/*const int argc, char* argv[]*/)
<< clutchlog::fmt(clutchlog::fmt::fg::yellow) << "{line}"
<< clutchlog::fmt(clutchlog::fmt::typo::reset) << " {msg} ! " << std::endl;
log.format(format.str());
CLUTCHLOG(quiet,"After having inserted styles within a new format template");
CLUTCHLOG(critical,"After having inserted styles within a new format template");
}