You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: multiplatform-markdown-renderer/src/commonMain/kotlin/com/mikepenz/markdown/annotator/AnnotatedStringKtx.kt
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -205,6 +205,7 @@ fun AnnotatedString.Builder.buildMarkdownAnnotatedString(
205
205
annotatorSettings:AnnotatorSettings,
206
206
) {
207
207
val annotate = annotatorSettings.annotator?.annotate
208
+
val eolAsNewLine = annotatorSettings.eolAsNewLine
208
209
var skipIfNext:Any?=null
209
210
children.forEach { child ->
210
211
if (skipIfNext ==null|| skipIfNext != child.type) {
@@ -273,7 +274,7 @@ fun AnnotatedString.Builder.buildMarkdownAnnotatedString(
Copy file name to clipboardExpand all lines: multiplatform-markdown-renderer/src/commonMain/kotlin/com/mikepenz/markdown/annotator/AnnotatorSettings.kt
0 commit comments