const std::string value = p->second.get<std::string>("value");
// print name and value
- out << "\\item {\\it Parameter name:} {\\tt " << demangle(p->first) << "}\\\\"
+ out << "\\item {\\it Parameter name:} {\\tt " << demangle(p->first) << "}\n\n"
<< std::endl
- << "{\\it Value:} " << value << "\\\\"
+ << "{\\it Value:} " << value << "\n\n"
<< std::endl
<< "{\\it Default:} "
- << p->second.get<std::string>("default_value") << "\\\\"
+ << p->second.get<std::string>("default_value") << "\n\n"
<< std::endl;
// if there is a
// print it as well
if (!p->second.get<std::string>("documentation").empty())
out << "{\\it Description:} "
- << p->second.get<std::string>("documentation") << "\\\\"
+ << p->second.get<std::string>("documentation") << "\n\n"
<< std::endl;
// also output possible values
In the beginning the Universe was created. This has made a lot of
people very angry and has been widely regarded as a bad move.
Douglas Adams