Wrap preview block quotes in square brackets

pull/175/head
M66B 5 years ago
parent c932d05d5f
commit 482a65ddf3

@ -1149,6 +1149,11 @@ public class HtmlHelper {
private static String _getText(Document d, boolean full) {
truncate(d, !full);
for (Element bq : d.select("blockquote")) {
bq.prependChild(new TextNode("["));
bq.appendChild(new TextNode("]"));
}
String text = d.text();
if (full)
return text;

Loading…
Cancel
Save