From 49b0f4a3fb0064313d16782839865b763ef760ce Mon Sep 17 00:00:00 2001 From: Ruben Beltran del Rio Date: Thu, 18 Jun 2026 23:53:25 +0200 Subject: Support Math rendering --- Sources/NorgUI/Views/Blocks/QuoteView.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Sources/NorgUI/Views/Blocks/QuoteView.swift') 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() } -- cgit