Translate pre to div instead of tt

pull/174/head
M66B 6 years ago
parent cd7bc4590e
commit 9a80c201a8

@ -446,7 +446,7 @@ public class HtmlHelper {
// Pre formatted text // Pre formatted text
for (Element pre : document.select("pre")) { for (Element pre : document.select("pre")) {
pre.html(formatPre(pre.wholeText())); pre.html(formatPre(pre.wholeText()));
pre.tagName("tt"); pre.tagName("div");
} }
// Code // Code

Loading…
Cancel
Save