Quote limit raw document

This commit is contained in:
M66B
2021-07-07 18:56:23 +02:00
parent cdd2fb4b4e
commit a303a6f685

View File

@@ -2257,8 +2257,7 @@ public class HtmlHelper {
int level = 1;
Element parent = bq.parent();
while (parent != null) {
if ("blockquote".equals(parent.tagName()) &&
hasBorder(parent))
if ("blockquote".equals(parent.tagName())) // TODO: indentation
level++;
parent = parent.parent();
}