From 09859cacf29d23dfa62fa1b9ac3efd897ac1c3f7 Mon Sep 17 00:00:00 2001 From: Xavi Artigas Date: Mon, 30 Sep 2019 18:05:07 +0200 Subject: [PATCH] mono-docs: Formatting of @since tags Use a line break
now that we can properly escape these things. Previously we appended (Since EFL X.XX) which didn't look very nice. --- src/bin/eolian_mono/eolian/mono/documentation.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/eolian_mono/eolian/mono/documentation.hh b/src/bin/eolian_mono/eolian/mono/documentation.hh index 6ed8169632..0035754dbe 100644 --- a/src/bin/eolian_mono/eolian/mono/documentation.hh +++ b/src/bin/eolian_mono/eolian/mono/documentation.hh @@ -560,7 +560,7 @@ struct documentation_generator { std::string str = doc.full_text; if (!doc.since.empty()) - str += "\n(Since EFL " + doc.since + ")"; + str += "\\
Since EFL " + doc.since; str += tail_text; return generate_tag_summary(sink, str, context); }