mirror of
https://github.com/M66B/FairEmail.git
synced 2025-03-01 17:26:12 +00:00
Translate pre to div instead of tt
This commit is contained in:
parent
cd7bc4590e
commit
9a80c201a8
1 changed files with 1 additions and 1 deletions
|
@ -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…
Reference in a new issue