Made custom rendering an experiment

This commit is contained in:
M66B
2020-04-24 16:12:07 +02:00
parent bd0b1e5c11
commit a6e4296b1d
6 changed files with 11 additions and 11 deletions

View File

@@ -179,7 +179,7 @@ public class ActivityEML extends ActivityBase {
if (html != null) {
Document parsed = JsoupEx.parse(html);
Document document = HtmlHelper.sanitizeView(context, parsed, false);
result.body = HtmlHelper.fromDocument(document);
result.body = HtmlHelper.fromDocument(context, document);
}
return result;