diff --git a/dachlatten-markdown/src/main/kotlin/de/sipgate/dachlatten/markdown/ParseMarkdown.kt b/dachlatten-markdown/src/main/kotlin/de/sipgate/dachlatten/markdown/ParseMarkdown.kt index 7179c71..7daaecc 100644 --- a/dachlatten-markdown/src/main/kotlin/de/sipgate/dachlatten/markdown/ParseMarkdown.kt +++ b/dachlatten-markdown/src/main/kotlin/de/sipgate/dachlatten/markdown/ParseMarkdown.kt @@ -66,15 +66,12 @@ fun parseMarkdown(markdown: String, styles: MarkdownStyles = MarkdownStyles()): .fastForEach { processNode(it, markdown, styles, tempNodesToRemoveAfter::add) } } - println(tempString) tempNodesToRemoveAfter.reversed().fastForEach { tempString = try { tempString.removeRange(it.startOffset, it.endOffset) - } catch (e: StringIndexOutOfBoundsException) { + } catch (_: StringIndexOutOfBoundsException) { AnnotatedString("") } - println(" ".repeat(it.startOffset) + "^".repeat(it.endOffset - it.startOffset)) - println(tempString) } return tempString