Index md instead of html

This commit is contained in:
2020-08-21 18:03:33 +02:00
parent c02f7c039a
commit b27fd29230
3 changed files with 28 additions and 72 deletions
@@ -21,7 +21,7 @@ fun parseSearchTerms(input: String): SearchTerms {
val match = innerRegex.find(input)?.groups?.get(1)?.value
if (match != null) {
val group = outerRegex.find(input)?.groups?.get(1)?.value
group?.let { c = c.replace(it, " ") }
group?.let { c = c.replace(it, "") }
}
return match
}