Normalize html line breaks

This commit is contained in:
M66B
2019-08-22 18:12:30 +02:00
parent 69fbc51b8e
commit 081d25940a
7 changed files with 9 additions and 9 deletions

View File

@@ -327,7 +327,7 @@ public class EmailProvider {
if (title == null)
title = "";
else
title += "<br />";
title += "<br>";
title += xml.getText();
}
continue;
@@ -481,7 +481,7 @@ public class EmailProvider {
if (provider.documentation == null)
provider.documentation = new StringBuilder();
else
provider.documentation.append("<br /><br />");
provider.documentation.append("<br><br>");
provider.documentation.append("<a href=\"").append(href).append("\">").append(title).append("</a>");
}