1 2 3 4 5 6 7 8 9 10
import NorgKit import SwiftUI struct ParagraphView: View { let content: [InlineSpan] var body: some View { NorgInlineText(spans: content) } }