We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f29186e commit 64efd3fCopy full SHA for 64efd3f
aztec/src/main/kotlin/org/wordpress/aztec/AztecParser.kt
@@ -567,8 +567,8 @@ class AztecParser @JvmOverloads constructor(private val alignmentRendering: Alig
567
i = next
568
}
569
570
- for (z in 0..nl - 1) {
571
- val parentSharesEnd = parents?.any { text.getSpanEnd(it) == end + 1 + z } ?: false
+ for (z in 0 until nl) {
+ val parentSharesEnd = parents?.any { text.getSpanEnd(it) == end + z } ?: false
572
if (parentSharesEnd) {
573
continue
574
0 commit comments