Skip to content

Commit 1e3e037

Browse files
authored
Merge pull request #305 from wordpress-mobile/issue/298-quote-not-rendered
New quote span needs Aztec styling
2 parents 991f7bf + 08ca464 commit 1e3e037

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

aztec/src/main/kotlin/org/wordpress/aztec/formatting/BlockFormatter.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ class BlockFormatter(editor: AztecText, val listStyle: ListStyle, val quoteStyle
240240
AztecOrderedListSpan::class.java -> AztecOrderedListSpan(nestingLevel, attrs, listStyle)
241241
AztecUnorderedListSpan::class.java -> AztecUnorderedListSpan(nestingLevel, attrs, listStyle)
242242
AztecListItemSpan::class.java -> AztecListItemSpan(nestingLevel, attrs)
243-
AztecQuoteSpan::class.java -> AztecQuoteSpan(nestingLevel, attrs)
243+
AztecQuoteSpan::class.java -> AztecQuoteSpan(nestingLevel, attrs, quoteStyle)
244244
AztecHeadingSpan::class.java -> AztecHeadingSpan(nestingLevel, attrs)
245245
else -> ParagraphSpan(nestingLevel, attrs)
246246
}

0 commit comments

Comments
 (0)