diff options
Diffstat (limited to 'Sources/NorgUI/Views/Blocks/QuoteView.swift')
| -rw-r--r-- | Sources/NorgUI/Views/Blocks/QuoteView.swift | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Sources/NorgUI/Views/Blocks/QuoteView.swift b/Sources/NorgUI/Views/Blocks/QuoteView.swift index 0347d78..f5a6ec8 100644 --- a/Sources/NorgUI/Views/Blocks/QuoteView.swift +++ b/Sources/NorgUI/Views/Blocks/QuoteView.swift @@ -19,7 +19,7 @@ struct QuoteView: View { status: status, content: content, font: theme.body, line: line, onSetStatus: onSetStatus ) } else { - Text(AttributedString(norg: content, theme: theme)) + NorgInlineText(spans: content) .foregroundStyle(theme.quoteColor) .italic() } |