mono-docs: Formatting of @since tags

Use a line break <br/> now that we can properly escape these things.
Previously we appended (Since EFL X.XX) which didn't look very nice.
This commit is contained in:
Xavi Artigas 2019-09-30 18:05:07 +02:00
parent f324e9fc11
commit 09859cacf2
1 changed files with 1 additions and 1 deletions

View File

@ -560,7 +560,7 @@ struct documentation_generator
{
std::string str = doc.full_text;
if (!doc.since.empty())
str += "\n(Since EFL " + doc.since + ")";
str += "\\<br/\\>Since EFL " + doc.since;
str += tail_text;
return generate_tag_summary(sink, str, context);
}