aboutsummaryrefslogtreecommitdiff
path: root/Sources/NorgUI/Views/Blocks/QuoteView.swift
diff options
context:
space:
mode:
authorRuben Beltran del Rio <jj@r.bdr.sh>2026-06-18 23:53:25 +0200
committerRuben Beltran del Rio <jj@r.bdr.sh>2026-06-19 17:56:23 +0200
commit49b0f4a3fb0064313d16782839865b763ef760ce (patch)
treea58439f1433de9ff66dc0be28f025afe56e79cfe /Sources/NorgUI/Views/Blocks/QuoteView.swift
parentcb91a73bfc845d74c3e4d1115bce5dfed10d456d (diff)
Support Math rendering1.2.0
Diffstat (limited to 'Sources/NorgUI/Views/Blocks/QuoteView.swift')
-rw-r--r--Sources/NorgUI/Views/Blocks/QuoteView.swift2
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()
}