additional html entities x2d, middot

This commit is contained in:
David Kaspar 2024-06-25 09:07:28 +02:00
parent 2230d1467c
commit 30e9d4b3cd

View File

@ -143,6 +143,7 @@ object MetaTagsParser {
"GT" to ">",
"nbsp" to " ",
"NBSP" to " ",
"middot" to "·",
)
val CHAR_REFS =
mapOf(
@ -160,6 +161,7 @@ object MetaTagsParser {
"hellip" to "",
"x27" to "'",
"nbsp" to " ",
"x2d" to "-",
)
fun replaceCharRefs(match: MatchResult): String {