Get body text only

This commit is contained in:
M66B 2021-10-24 09:11:40 +02:00
parent f0215a4e1d
commit a9cfd10b07
1 changed files with 1 additions and 1 deletions

View File

@ -2126,7 +2126,7 @@ public class HtmlHelper {
for (Element bq : d.select("blockquote"))
bq.prependChild(new TextNode("> "));
return d.text();
return d.body().text();
}
static String getQuoteStyle(Element e) {