Newline below heading

pull/187/head
M66B 4 years ago
parent fb03a1da12
commit acb89f8611

@ -758,12 +758,14 @@ public class HtmlHelper {
} }
// Replace headings // Replace headings
if (!text_size) for (Element h : document.select("h1,h2,h3,h4,h5,h6")) {
for (Element h : document.select("h1,h2,h3,h4,h5,h6")) { if (!"false".equals(h.attr("x-line-after")))
h.appendElement("br"); h.appendElement("br");
if (!text_size) {
h.appendElement("br"); h.appendElement("br");
h.tagName("strong"); h.tagName("strong");
} }
}
// Paragraphs // Paragraphs
for (Element p : document.select("p")) { for (Element p : document.select("p")) {

Loading…
Cancel
Save