From c3307dddf05a21eaf6f1a1ec03300ada8f852c7a Mon Sep 17 00:00:00 2001 From: tastytea Date: Sun, 15 Dec 2019 14:48:17 +0100 Subject: [PATCH] Prevent interpretation of AsciiDoc syntax in descriptions. --- src/lib/export/adoc.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/export/adoc.cpp b/src/lib/export/adoc.cpp index 92a836f..4517f9f 100644 --- a/src/lib/export/adoc.cpp +++ b/src/lib/export/adoc.cpp @@ -106,7 +106,7 @@ void Export::AsciiDoc::print() const if (!entry.description.empty()) { - _out << " +" << endl << entry.description; + _out << " +\n+" << entry.description << '+'; } _out << endl << endl; }