Fix error with double escaping rendering code system markdown

This commit is contained in:
Grahame Grieve 2022-09-15 08:59:38 +02:00
parent 03722bf782
commit 37982f2af3
1 changed files with 1 additions and 1 deletions

View File

@ -134,7 +134,7 @@ public class DataRenderer extends Renderer {
}
// 2. markdown
String s = getContext().getMarkdown().process(Utilities.escapeXml(text), "narrative generator");
String s = getContext().getMarkdown().process(text, "narrative generator");
XhtmlParser p = new XhtmlParser();
XhtmlNode m;
try {