Prevent interpretation of AsciiDoc syntax in descriptions.
continuous-integration/drone/push Build was killed Details

This commit is contained in:
tastytea 2019-12-15 14:48:17 +01:00
parent 56dc4083ce
commit c3307dddf0
Signed by: tastytea
GPG Key ID: CFC39497F1B26E07
1 changed files with 1 additions and 1 deletions

View File

@ -106,7 +106,7 @@ void Export::AsciiDoc::print() const
if (!entry.description.empty())
{
_out << " +" << endl << entry.description;
_out << " +\n+" << entry.description << '+';
}
_out << endl << endl;
}