|
|
@ -322,11 +322,10 @@ object BookHelp { |
|
|
|
} |
|
|
|
} |
|
|
|
val contents = arrayListOf<String>() |
|
|
|
val contents = arrayListOf<String>() |
|
|
|
c.split("\n").forEach { |
|
|
|
c.split("\n").forEach { |
|
|
|
val str = it.replace("^\\s+".toRegex(), "") |
|
|
|
val str = it.replace("^[\\n\\s\\r]+".toRegex(), "") |
|
|
|
.replace("\r", "") |
|
|
|
|
|
|
|
if (contents.isEmpty()) { |
|
|
|
if (contents.isEmpty()) { |
|
|
|
contents.add(title) |
|
|
|
contents.add(title) |
|
|
|
if (str != title && it.isNotEmpty()) { |
|
|
|
if (str != title && str.isNotEmpty()) { |
|
|
|
contents.add("${ReadBookConfig.paragraphIndent}$str") |
|
|
|
contents.add("${ReadBookConfig.paragraphIndent}$str") |
|
|
|
} |
|
|
|
} |
|
|
|
} else if (str.isNotEmpty()) { |
|
|
|
} else if (str.isNotEmpty()) { |
|
|
|