Update HtmlFormatter.kt

优化
pull/1132/head
bushixuanqi 3 years ago committed by GitHub
parent 633c5129fe
commit 7cdf7b602d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      app/src/main/java/io/legado/app/utils/HtmlFormatter.kt

@ -24,7 +24,7 @@ object HtmlFormatter {
html ?: return "" html ?: return ""
val keepImgHtml = html.replace(wrapHtmlRegex, "\n") val keepImgHtml = html.replace(wrapHtmlRegex, "\n")
.replace(notImgHtmlRegex, "") .replace(notImgHtmlRegex, "")
.replace("\\n\\s*\\n|\\n$|^\\n".toRegex(), "\n") .replace("\\n\\s*\\n|\\n\\s*$|^\\s*\\n".toRegex(), "\n")
var str = StringBuffer() var str = StringBuffer()
var endPos = 0 var endPos = 0

Loading…
Cancel
Save