Simplified text quotes

This commit is contained in:
M66B
2021-07-07 18:41:26 +02:00
parent 71f69e124d
commit cdd2fb4b4e

View File

@@ -2006,10 +2006,7 @@ public class HtmlHelper {
truncate(d, MAX_FULL_TEXT_SIZE);
for (Element bq : d.select("blockquote"))
if (hasBorder(bq)) {
bq.prependChild(new TextNode("["));
bq.appendChild(new TextNode("]"));
}
bq.prependChild(new TextNode("> "));
return d.text();
}