Update HtmlFormatter.kt

优化
pull/1126/head
bushixuanqi 3 years ago committed by GitHub
parent eb7c30e3d3
commit f9324fee5f
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

@ -36,7 +36,7 @@ object HtmlFormatter {
val urlBefore = url.substringBefore(',')
val strBefore = keepImgHtml.substring(appendPos, matcher.start())
sb.append(
if(strBefore.isBlank()) strBefore else strBefore.replace("\n", "\n  ") //缩进图片之间的非空白段落
if(strBefore.isBlank()) '\n' else strBefore.replace("\n", "\n  ") //缩进图片之间的非空白段落
)
sb.append(
"<img src=\"${

Loading…
Cancel
Save