Build Information
Successful build of swift-markdown-ui, reference main (8371ae), with Swift 6.2 for macOS (SPM) on 28 Dec 2025 14:11:58 UTC.
Swift 6 data race errors: 0
Build Command
env DEVELOPER_DIR=/Applications/Xcode-26.0.0.app xcrun swift build --arch arm64Build Log
191 |
192 | /// The table cell style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// 
40 | public struct BlockStyle<Configuration> {
| `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 | private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:193:14: warning: stored property 'tableCell' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<TableCellConfiguration>'; this is an error in the Swift 6 language mode
191 |
192 | /// The table cell style.
193 | public var tableCell = BlockStyle<TableCellConfiguration> { $0.label }
| `- warning: stored property 'tableCell' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<TableCellConfiguration>'; this is an error in the Swift 6 language mode
194 |
195 | /// The thematic break style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// 
40 | public struct BlockStyle<Configuration> {
| `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 | private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:196:14: warning: stored property 'thematicBreak' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<()>'; this is an error in the Swift 6 language mode
194 |
195 | /// The thematic break style.
196 | public var thematicBreak = BlockStyle { Divider() }
| `- warning: stored property 'thematicBreak' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<()>'; this is an error in the Swift 6 language mode
197 |
198 | /// Creates a theme with default text styles.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// 
40 | public struct BlockStyle<Configuration> {
| `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 | private let body: (Configuration) -> AnyView
42 |
[155/175] Compiling MarkdownUI Color+RGBA.swift
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:104:14: warning: stored property 'text' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
102 | public struct Theme: Sendable {
103 | /// The default text style.
104 | public var text: TextStyle = EmptyTextStyle()
| `- warning: stored property 'text' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
105 |
106 | /// The inline code style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/TextStyle/TextStyle.swift:60:17: note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
58 | ///
59 | /// 
60 | public protocol TextStyle {
| `- note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
61 | func _collectAttributes(in attributes: inout AttributeContainer)
62 | }
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:107:14: warning: stored property 'code' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
105 |
106 | /// The inline code style.
107 | public var code: TextStyle = FontFamilyVariant(.monospaced)
| `- warning: stored property 'code' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
108 |
109 | /// The emphasis style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/TextStyle/TextStyle.swift:60:17: note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
58 | ///
59 | /// 
60 | public protocol TextStyle {
| `- note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
61 | func _collectAttributes(in attributes: inout AttributeContainer)
62 | }
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:110:14: warning: stored property 'emphasis' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
108 |
109 | /// The emphasis style.
110 | public var emphasis: TextStyle = FontStyle(.italic)
| `- warning: stored property 'emphasis' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
111 |
112 | /// The strong style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/TextStyle/TextStyle.swift:60:17: note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
58 | ///
59 | /// 
60 | public protocol TextStyle {
| `- note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
61 | func _collectAttributes(in attributes: inout AttributeContainer)
62 | }
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:113:14: warning: stored property 'strong' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
111 |
112 | /// The strong style.
113 | public var strong: TextStyle = FontWeight(.semibold)
| `- warning: stored property 'strong' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
114 |
115 | /// The strikethrough style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/TextStyle/TextStyle.swift:60:17: note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
58 | ///
59 | /// 
60 | public protocol TextStyle {
| `- note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
61 | func _collectAttributes(in attributes: inout AttributeContainer)
62 | }
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:116:14: warning: stored property 'strikethrough' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
114 |
115 | /// The strikethrough style.
116 | public var strikethrough: TextStyle = StrikethroughStyle(.single)
| `- warning: stored property 'strikethrough' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
117 |
118 | /// The link style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/TextStyle/TextStyle.swift:60:17: note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
58 | ///
59 | /// 
60 | public protocol TextStyle {
| `- note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
61 | func _collectAttributes(in attributes: inout AttributeContainer)
62 | }
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:119:14: warning: stored property 'link' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
117 |
118 | /// The link style.
119 | public var link: TextStyle = EmptyTextStyle()
| `- warning: stored property 'link' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
120 |
121 | var headings = Array(
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/TextStyle/TextStyle.swift:60:17: note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
58 | ///
59 | /// 
60 | public protocol TextStyle {
| `- note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
61 | func _collectAttributes(in attributes: inout AttributeContainer)
62 | }
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:121:7: warning: stored property 'headings' of 'Sendable'-conforming struct 'Theme' contains non-Sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
119 | public var link: TextStyle = EmptyTextStyle()
120 |
121 | var headings = Array(
| `- warning: stored property 'headings' of 'Sendable'-conforming struct 'Theme' contains non-Sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
122 | repeating: BlockStyle<BlockConfiguration> { $0.label },
123 | count: 6
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// 
40 | public struct BlockStyle<Configuration> {
| `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 | private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:163:14: warning: stored property 'paragraph' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
161 |
162 | /// The paragraph style.
163 | public var paragraph = BlockStyle<BlockConfiguration> { $0.label }
| `- warning: stored property 'paragraph' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
164 |
165 | /// The blockquote style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// 
40 | public struct BlockStyle<Configuration> {
| `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 | private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:166:14: warning: stored property 'blockquote' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
164 |
165 | /// The blockquote style.
166 | public var blockquote = BlockStyle<BlockConfiguration> { $0.label }
| `- warning: stored property 'blockquote' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
167 |
168 | /// The code block style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// 
40 | public struct BlockStyle<Configuration> {
| `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 | private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:169:14: warning: stored property 'codeBlock' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<CodeBlockConfiguration>'; this is an error in the Swift 6 language mode
167 |
168 | /// The code block style.
169 | public var codeBlock = BlockStyle<CodeBlockConfiguration> { $0.label }
| `- warning: stored property 'codeBlock' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<CodeBlockConfiguration>'; this is an error in the Swift 6 language mode
170 |
171 | /// The image style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// 
40 | public struct BlockStyle<Configuration> {
| `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 | private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:172:14: warning: stored property 'image' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
170 |
171 | /// The image style.
172 | public var image = BlockStyle<BlockConfiguration> { $0.label }
| `- warning: stored property 'image' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
173 |
174 | /// The list style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// 
40 | public struct BlockStyle<Configuration> {
| `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 | private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:175:14: warning: stored property 'list' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
173 |
174 | /// The list style.
175 | public var list = BlockStyle<BlockConfiguration> { $0.label }
| `- warning: stored property 'list' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
176 |
177 | /// The list item style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// 
40 | public struct BlockStyle<Configuration> {
| `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 | private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:178:14: warning: stored property 'listItem' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
176 |
177 | /// The list item style.
178 | public var listItem = BlockStyle<BlockConfiguration> { $0.label }
| `- warning: stored property 'listItem' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
179 |
180 | /// The task list marker style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// 
40 | public struct BlockStyle<Configuration> {
| `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 | private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:181:14: warning: stored property 'taskListMarker' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<TaskListMarkerConfiguration>'; this is an error in the Swift 6 language mode
179 |
180 | /// The task list marker style.
181 | public var taskListMarker = BlockStyle.checkmarkSquare
| `- warning: stored property 'taskListMarker' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<TaskListMarkerConfiguration>'; this is an error in the Swift 6 language mode
182 |
183 | /// The bulleted list marker style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// 
40 | public struct BlockStyle<Configuration> {
| `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 | private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:184:14: warning: stored property 'bulletedListMarker' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<ListMarkerConfiguration>'; this is an error in the Swift 6 language mode
182 |
183 | /// The bulleted list marker style.
184 | public var bulletedListMarker = BlockStyle.discCircleSquare
| `- warning: stored property 'bulletedListMarker' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<ListMarkerConfiguration>'; this is an error in the Swift 6 language mode
185 |
186 | /// The numbered list marker style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// 
40 | public struct BlockStyle<Configuration> {
| `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 | private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:187:14: warning: stored property 'numberedListMarker' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<ListMarkerConfiguration>'; this is an error in the Swift 6 language mode
185 |
186 | /// The numbered list marker style.
187 | public var numberedListMarker = BlockStyle.decimal
| `- warning: stored property 'numberedListMarker' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<ListMarkerConfiguration>'; this is an error in the Swift 6 language mode
188 |
189 | /// The table style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// 
40 | public struct BlockStyle<Configuration> {
| `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 | private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:190:14: warning: stored property 'table' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
188 |
189 | /// The table style.
190 | public var table = BlockStyle<BlockConfiguration> { $0.label }
| `- warning: stored property 'table' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
191 |
192 | /// The table cell style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// 
40 | public struct BlockStyle<Configuration> {
| `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 | private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:193:14: warning: stored property 'tableCell' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<TableCellConfiguration>'; this is an error in the Swift 6 language mode
191 |
192 | /// The table cell style.
193 | public var tableCell = BlockStyle<TableCellConfiguration> { $0.label }
| `- warning: stored property 'tableCell' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<TableCellConfiguration>'; this is an error in the Swift 6 language mode
194 |
195 | /// The thematic break style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// 
40 | public struct BlockStyle<Configuration> {
| `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 | private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:196:14: warning: stored property 'thematicBreak' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<()>'; this is an error in the Swift 6 language mode
194 |
195 | /// The thematic break style.
196 | public var thematicBreak = BlockStyle { Divider() }
| `- warning: stored property 'thematicBreak' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<()>'; this is an error in the Swift 6 language mode
197 |
198 | /// Creates a theme with default text styles.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// 
40 | public struct BlockStyle<Configuration> {
| `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 | private let body: (Configuration) -> AnyView
42 |
[156/175] Compiling MarkdownUI Deprecations.swift
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:104:14: warning: stored property 'text' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
102 | public struct Theme: Sendable {
103 | /// The default text style.
104 | public var text: TextStyle = EmptyTextStyle()
| `- warning: stored property 'text' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
105 |
106 | /// The inline code style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/TextStyle/TextStyle.swift:60:17: note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
58 | ///
59 | /// 
60 | public protocol TextStyle {
| `- note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
61 | func _collectAttributes(in attributes: inout AttributeContainer)
62 | }
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:107:14: warning: stored property 'code' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
105 |
106 | /// The inline code style.
107 | public var code: TextStyle = FontFamilyVariant(.monospaced)
| `- warning: stored property 'code' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
108 |
109 | /// The emphasis style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/TextStyle/TextStyle.swift:60:17: note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
58 | ///
59 | /// 
60 | public protocol TextStyle {
| `- note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
61 | func _collectAttributes(in attributes: inout AttributeContainer)
62 | }
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:110:14: warning: stored property 'emphasis' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
108 |
109 | /// The emphasis style.
110 | public var emphasis: TextStyle = FontStyle(.italic)
| `- warning: stored property 'emphasis' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
111 |
112 | /// The strong style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/TextStyle/TextStyle.swift:60:17: note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
58 | ///
59 | /// 
60 | public protocol TextStyle {
| `- note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
61 | func _collectAttributes(in attributes: inout AttributeContainer)
62 | }
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:113:14: warning: stored property 'strong' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
111 |
112 | /// The strong style.
113 | public var strong: TextStyle = FontWeight(.semibold)
| `- warning: stored property 'strong' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
114 |
115 | /// The strikethrough style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/TextStyle/TextStyle.swift:60:17: note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
58 | ///
59 | /// 
60 | public protocol TextStyle {
| `- note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
61 | func _collectAttributes(in attributes: inout AttributeContainer)
62 | }
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:116:14: warning: stored property 'strikethrough' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
114 |
115 | /// The strikethrough style.
116 | public var strikethrough: TextStyle = StrikethroughStyle(.single)
| `- warning: stored property 'strikethrough' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
117 |
118 | /// The link style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/TextStyle/TextStyle.swift:60:17: note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
58 | ///
59 | /// 
60 | public protocol TextStyle {
| `- note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
61 | func _collectAttributes(in attributes: inout AttributeContainer)
62 | }
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:119:14: warning: stored property 'link' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
117 |
118 | /// The link style.
119 | public var link: TextStyle = EmptyTextStyle()
| `- warning: stored property 'link' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
120 |
121 | var headings = Array(
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/TextStyle/TextStyle.swift:60:17: note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
58 | ///
59 | /// 
60 | public protocol TextStyle {
| `- note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
61 | func _collectAttributes(in attributes: inout AttributeContainer)
62 | }
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:121:7: warning: stored property 'headings' of 'Sendable'-conforming struct 'Theme' contains non-Sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
119 | public var link: TextStyle = EmptyTextStyle()
120 |
121 | var headings = Array(
| `- warning: stored property 'headings' of 'Sendable'-conforming struct 'Theme' contains non-Sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
122 | repeating: BlockStyle<BlockConfiguration> { $0.label },
123 | count: 6
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// 
40 | public struct BlockStyle<Configuration> {
| `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 | private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:163:14: warning: stored property 'paragraph' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
161 |
162 | /// The paragraph style.
163 | public var paragraph = BlockStyle<BlockConfiguration> { $0.label }
| `- warning: stored property 'paragraph' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
164 |
165 | /// The blockquote style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// 
40 | public struct BlockStyle<Configuration> {
| `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 | private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:166:14: warning: stored property 'blockquote' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
164 |
165 | /// The blockquote style.
166 | public var blockquote = BlockStyle<BlockConfiguration> { $0.label }
| `- warning: stored property 'blockquote' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
167 |
168 | /// The code block style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// 
40 | public struct BlockStyle<Configuration> {
| `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 | private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:169:14: warning: stored property 'codeBlock' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<CodeBlockConfiguration>'; this is an error in the Swift 6 language mode
167 |
168 | /// The code block style.
169 | public var codeBlock = BlockStyle<CodeBlockConfiguration> { $0.label }
| `- warning: stored property 'codeBlock' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<CodeBlockConfiguration>'; this is an error in the Swift 6 language mode
170 |
171 | /// The image style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// 
40 | public struct BlockStyle<Configuration> {
| `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 | private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:172:14: warning: stored property 'image' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
170 |
171 | /// The image style.
172 | public var image = BlockStyle<BlockConfiguration> { $0.label }
| `- warning: stored property 'image' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
173 |
174 | /// The list style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// 
40 | public struct BlockStyle<Configuration> {
| `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 | private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:175:14: warning: stored property 'list' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
173 |
174 | /// The list style.
175 | public var list = BlockStyle<BlockConfiguration> { $0.label }
| `- warning: stored property 'list' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
176 |
177 | /// The list item style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// 
40 | public struct BlockStyle<Configuration> {
| `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 | private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:178:14: warning: stored property 'listItem' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
176 |
177 | /// The list item style.
178 | public var listItem = BlockStyle<BlockConfiguration> { $0.label }
| `- warning: stored property 'listItem' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
179 |
180 | /// The task list marker style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// 
40 | public struct BlockStyle<Configuration> {
| `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 | private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:181:14: warning: stored property 'taskListMarker' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<TaskListMarkerConfiguration>'; this is an error in the Swift 6 language mode
179 |
180 | /// The task list marker style.
181 | public var taskListMarker = BlockStyle.checkmarkSquare
| `- warning: stored property 'taskListMarker' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<TaskListMarkerConfiguration>'; this is an error in the Swift 6 language mode
182 |
183 | /// The bulleted list marker style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// 
40 | public struct BlockStyle<Configuration> {
| `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 | private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:184:14: warning: stored property 'bulletedListMarker' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<ListMarkerConfiguration>'; this is an error in the Swift 6 language mode
182 |
183 | /// The bulleted list marker style.
184 | public var bulletedListMarker = BlockStyle.discCircleSquare
| `- warning: stored property 'bulletedListMarker' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<ListMarkerConfiguration>'; this is an error in the Swift 6 language mode
185 |
186 | /// The numbered list marker style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// 
40 | public struct BlockStyle<Configuration> {
| `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 | private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:187:14: warning: stored property 'numberedListMarker' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<ListMarkerConfiguration>'; this is an error in the Swift 6 language mode
185 |
186 | /// The numbered list marker style.
187 | public var numberedListMarker = BlockStyle.decimal
| `- warning: stored property 'numberedListMarker' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<ListMarkerConfiguration>'; this is an error in the Swift 6 language mode
188 |
189 | /// The table style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// 
40 | public struct BlockStyle<Configuration> {
| `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 | private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:190:14: warning: stored property 'table' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
188 |
189 | /// The table style.
190 | public var table = BlockStyle<BlockConfiguration> { $0.label }
| `- warning: stored property 'table' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
191 |
192 | /// The table cell style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// 
40 | public struct BlockStyle<Configuration> {
| `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 | private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:193:14: warning: stored property 'tableCell' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<TableCellConfiguration>'; this is an error in the Swift 6 language mode
191 |
192 | /// The table cell style.
193 | public var tableCell = BlockStyle<TableCellConfiguration> { $0.label }
| `- warning: stored property 'tableCell' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<TableCellConfiguration>'; this is an error in the Swift 6 language mode
194 |
195 | /// The thematic break style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// 
40 | public struct BlockStyle<Configuration> {
| `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 | private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:196:14: warning: stored property 'thematicBreak' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<()>'; this is an error in the Swift 6 language mode
194 |
195 | /// The thematic break style.
196 | public var thematicBreak = BlockStyle { Divider() }
| `- warning: stored property 'thematicBreak' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<()>'; this is an error in the Swift 6 language mode
197 |
198 | /// Creates a theme with default text styles.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// 
40 | public struct BlockStyle<Configuration> {
| `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 | private let body: (Configuration) -> AnyView
42 |
[157/175] Compiling MarkdownUI FlowLayout.swift
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:104:14: warning: stored property 'text' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
102 | public struct Theme: Sendable {
103 | /// The default text style.
104 | public var text: TextStyle = EmptyTextStyle()
| `- warning: stored property 'text' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
105 |
106 | /// The inline code style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/TextStyle/TextStyle.swift:60:17: note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
58 | ///
59 | /// 
60 | public protocol TextStyle {
| `- note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
61 | func _collectAttributes(in attributes: inout AttributeContainer)
62 | }
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:107:14: warning: stored property 'code' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
105 |
106 | /// The inline code style.
107 | public var code: TextStyle = FontFamilyVariant(.monospaced)
| `- warning: stored property 'code' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
108 |
109 | /// The emphasis style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/TextStyle/TextStyle.swift:60:17: note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
58 | ///
59 | /// 
60 | public protocol TextStyle {
| `- note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
61 | func _collectAttributes(in attributes: inout AttributeContainer)
62 | }
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:110:14: warning: stored property 'emphasis' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
108 |
109 | /// The emphasis style.
110 | public var emphasis: TextStyle = FontStyle(.italic)
| `- warning: stored property 'emphasis' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
111 |
112 | /// The strong style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/TextStyle/TextStyle.swift:60:17: note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
58 | ///
59 | /// 
60 | public protocol TextStyle {
| `- note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
61 | func _collectAttributes(in attributes: inout AttributeContainer)
62 | }
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:113:14: warning: stored property 'strong' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
111 |
112 | /// The strong style.
113 | public var strong: TextStyle = FontWeight(.semibold)
| `- warning: stored property 'strong' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
114 |
115 | /// The strikethrough style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/TextStyle/TextStyle.swift:60:17: note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
58 | ///
59 | /// 
60 | public protocol TextStyle {
| `- note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
61 | func _collectAttributes(in attributes: inout AttributeContainer)
62 | }
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:116:14: warning: stored property 'strikethrough' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
114 |
115 | /// The strikethrough style.
116 | public var strikethrough: TextStyle = StrikethroughStyle(.single)
| `- warning: stored property 'strikethrough' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
117 |
118 | /// The link style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/TextStyle/TextStyle.swift:60:17: note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
58 | ///
59 | /// 
60 | public protocol TextStyle {
| `- note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
61 | func _collectAttributes(in attributes: inout AttributeContainer)
62 | }
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:119:14: warning: stored property 'link' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
117 |
118 | /// The link style.
119 | public var link: TextStyle = EmptyTextStyle()
| `- warning: stored property 'link' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
120 |
121 | var headings = Array(
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/TextStyle/TextStyle.swift:60:17: note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
58 | ///
59 | /// 
60 | public protocol TextStyle {
| `- note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
61 | func _collectAttributes(in attributes: inout AttributeContainer)
62 | }
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:121:7: warning: stored property 'headings' of 'Sendable'-conforming struct 'Theme' contains non-Sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
119 | public var link: TextStyle = EmptyTextStyle()
120 |
121 | var headings = Array(
| `- warning: stored property 'headings' of 'Sendable'-conforming struct 'Theme' contains non-Sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
122 | repeating: BlockStyle<BlockConfiguration> { $0.label },
123 | count: 6
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// 
40 | public struct BlockStyle<Configuration> {
| `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 | private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:163:14: warning: stored property 'paragraph' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
161 |
162 | /// The paragraph style.
163 | public var paragraph = BlockStyle<BlockConfiguration> { $0.label }
| `- warning: stored property 'paragraph' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
164 |
165 | /// The blockquote style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// 
40 | public struct BlockStyle<Configuration> {
| `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 | private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:166:14: warning: stored property 'blockquote' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
164 |
165 | /// The blockquote style.
166 | public var blockquote = BlockStyle<BlockConfiguration> { $0.label }
| `- warning: stored property 'blockquote' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
167 |
168 | /// The code block style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// 
40 | public struct BlockStyle<Configuration> {
| `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 | private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:169:14: warning: stored property 'codeBlock' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<CodeBlockConfiguration>'; this is an error in the Swift 6 language mode
167 |
168 | /// The code block style.
169 | public var codeBlock = BlockStyle<CodeBlockConfiguration> { $0.label }
| `- warning: stored property 'codeBlock' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<CodeBlockConfiguration>'; this is an error in the Swift 6 language mode
170 |
171 | /// The image style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// 
40 | public struct BlockStyle<Configuration> {
| `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 | private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:172:14: warning: stored property 'image' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
170 |
171 | /// The image style.
172 | public var image = BlockStyle<BlockConfiguration> { $0.label }
| `- warning: stored property 'image' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
173 |
174 | /// The list style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// 
40 | public struct BlockStyle<Configuration> {
| `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 | private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:175:14: warning: stored property 'list' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
173 |
174 | /// The list style.
175 | public var list = BlockStyle<BlockConfiguration> { $0.label }
| `- warning: stored property 'list' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
176 |
177 | /// The list item style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// 
40 | public struct BlockStyle<Configuration> {
| `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 | private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:178:14: warning: stored property 'listItem' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
176 |
177 | /// The list item style.
178 | public var listItem = BlockStyle<BlockConfiguration> { $0.label }
| `- warning: stored property 'listItem' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
179 |
180 | /// The task list marker style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// 
40 | public struct BlockStyle<Configuration> {
| `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 | private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:181:14: warning: stored property 'taskListMarker' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<TaskListMarkerConfiguration>'; this is an error in the Swift 6 language mode
179 |
180 | /// The task list marker style.
181 | public var taskListMarker = BlockStyle.checkmarkSquare
| `- warning: stored property 'taskListMarker' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<TaskListMarkerConfiguration>'; this is an error in the Swift 6 language mode
182 |
183 | /// The bulleted list marker style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// 
40 | public struct BlockStyle<Configuration> {
| `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 | private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:184:14: warning: stored property 'bulletedListMarker' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<ListMarkerConfiguration>'; this is an error in the Swift 6 language mode
182 |
183 | /// The bulleted list marker style.
184 | public var bulletedListMarker = BlockStyle.discCircleSquare
| `- warning: stored property 'bulletedListMarker' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<ListMarkerConfiguration>'; this is an error in the Swift 6 language mode
185 |
186 | /// The numbered list marker style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// 
40 | public struct BlockStyle<Configuration> {
| `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 | private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:187:14: warning: stored property 'numberedListMarker' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<ListMarkerConfiguration>'; this is an error in the Swift 6 language mode
185 |
186 | /// The numbered list marker style.
187 | public var numberedListMarker = BlockStyle.decimal
| `- warning: stored property 'numberedListMarker' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<ListMarkerConfiguration>'; this is an error in the Swift 6 language mode
188 |
189 | /// The table style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// 
40 | public struct BlockStyle<Configuration> {
| `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 | private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:190:14: warning: stored property 'table' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
188 |
189 | /// The table style.
190 | public var table = BlockStyle<BlockConfiguration> { $0.label }
| `- warning: stored property 'table' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
191 |
192 | /// The table cell style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// 
40 | public struct BlockStyle<Configuration> {
| `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 | private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:193:14: warning: stored property 'tableCell' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<TableCellConfiguration>'; this is an error in the Swift 6 language mode
191 |
192 | /// The table cell style.
193 | public var tableCell = BlockStyle<TableCellConfiguration> { $0.label }
| `- warning: stored property 'tableCell' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<TableCellConfiguration>'; this is an error in the Swift 6 language mode
194 |
195 | /// The thematic break style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// 
40 | public struct BlockStyle<Configuration> {
| `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 | private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:196:14: warning: stored property 'thematicBreak' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<()>'; this is an error in the Swift 6 language mode
194 |
195 | /// The thematic break style.
196 | public var thematicBreak = BlockStyle { Divider() }
| `- warning: stored property 'thematicBreak' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<()>'; this is an error in the Swift 6 language mode
197 |
198 | /// Creates a theme with default text styles.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// 
40 | public struct BlockStyle<Configuration> {
| `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 | private let body: (Configuration) -> AnyView
42 |
[158/175] Compiling MarkdownUI Indexed.swift
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:104:14: warning: stored property 'text' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
102 | public struct Theme: Sendable {
103 | /// The default text style.
104 | public var text: TextStyle = EmptyTextStyle()
| `- warning: stored property 'text' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
105 |
106 | /// The inline code style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/TextStyle/TextStyle.swift:60:17: note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
58 | ///
59 | /// 
60 | public protocol TextStyle {
| `- note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
61 | func _collectAttributes(in attributes: inout AttributeContainer)
62 | }
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:107:14: warning: stored property 'code' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
105 |
106 | /// The inline code style.
107 | public var code: TextStyle = FontFamilyVariant(.monospaced)
| `- warning: stored property 'code' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
108 |
109 | /// The emphasis style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/TextStyle/TextStyle.swift:60:17: note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
58 | ///
59 | /// 
60 | public protocol TextStyle {
| `- note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
61 | func _collectAttributes(in attributes: inout AttributeContainer)
62 | }
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:110:14: warning: stored property 'emphasis' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
108 |
109 | /// The emphasis style.
110 | public var emphasis: TextStyle = FontStyle(.italic)
| `- warning: stored property 'emphasis' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
111 |
112 | /// The strong style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/TextStyle/TextStyle.swift:60:17: note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
58 | ///
59 | /// 
60 | public protocol TextStyle {
| `- note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
61 | func _collectAttributes(in attributes: inout AttributeContainer)
62 | }
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:113:14: warning: stored property 'strong' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
111 |
112 | /// The strong style.
113 | public var strong: TextStyle = FontWeight(.semibold)
| `- warning: stored property 'strong' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
114 |
115 | /// The strikethrough style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/TextStyle/TextStyle.swift:60:17: note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
58 | ///
59 | /// 
60 | public protocol TextStyle {
| `- note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
61 | func _collectAttributes(in attributes: inout AttributeContainer)
62 | }
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:116:14: warning: stored property 'strikethrough' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
114 |
115 | /// The strikethrough style.
116 | public var strikethrough: TextStyle = StrikethroughStyle(.single)
| `- warning: stored property 'strikethrough' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
117 |
118 | /// The link style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/TextStyle/TextStyle.swift:60:17: note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
58 | ///
59 | /// 
60 | public protocol TextStyle {
| `- note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
61 | func _collectAttributes(in attributes: inout AttributeContainer)
62 | }
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:119:14: warning: stored property 'link' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
117 |
118 | /// The link style.
119 | public var link: TextStyle = EmptyTextStyle()
| `- warning: stored property 'link' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
120 |
121 | var headings = Array(
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/TextStyle/TextStyle.swift:60:17: note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
58 | ///
59 | /// 
60 | public protocol TextStyle {
| `- note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
61 | func _collectAttributes(in attributes: inout AttributeContainer)
62 | }
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:121:7: warning: stored property 'headings' of 'Sendable'-conforming struct 'Theme' contains non-Sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
119 | public var link: TextStyle = EmptyTextStyle()
120 |
121 | var headings = Array(
| `- warning: stored property 'headings' of 'Sendable'-conforming struct 'Theme' contains non-Sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
122 | repeating: BlockStyle<BlockConfiguration> { $0.label },
123 | count: 6
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// 
40 | public struct BlockStyle<Configuration> {
| `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 | private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:163:14: warning: stored property 'paragraph' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
161 |
162 | /// The paragraph style.
163 | public var paragraph = BlockStyle<BlockConfiguration> { $0.label }
| `- warning: stored property 'paragraph' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
164 |
165 | /// The blockquote style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// 
40 | public struct BlockStyle<Configuration> {
| `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 | private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:166:14: warning: stored property 'blockquote' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
164 |
165 | /// The blockquote style.
166 | public var blockquote = BlockStyle<BlockConfiguration> { $0.label }
| `- warning: stored property 'blockquote' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
167 |
168 | /// The code block style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// 
40 | public struct BlockStyle<Configuration> {
| `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 | private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:169:14: warning: stored property 'codeBlock' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<CodeBlockConfiguration>'; this is an error in the Swift 6 language mode
167 |
168 | /// The code block style.
169 | public var codeBlock = BlockStyle<CodeBlockConfiguration> { $0.label }
| `- warning: stored property 'codeBlock' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<CodeBlockConfiguration>'; this is an error in the Swift 6 language mode
170 |
171 | /// The image style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// 
40 | public struct BlockStyle<Configuration> {
| `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 | private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:172:14: warning: stored property 'image' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
170 |
171 | /// The image style.
172 | public var image = BlockStyle<BlockConfiguration> { $0.label }
| `- warning: stored property 'image' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
173 |
174 | /// The list style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// 
40 | public struct BlockStyle<Configuration> {
| `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 | private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:175:14: warning: stored property 'list' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
173 |
174 | /// The list style.
175 | public var list = BlockStyle<BlockConfiguration> { $0.label }
| `- warning: stored property 'list' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
176 |
177 | /// The list item style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// 
40 | public struct BlockStyle<Configuration> {
| `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 | private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:178:14: warning: stored property 'listItem' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
176 |
177 | /// The list item style.
178 | public var listItem = BlockStyle<BlockConfiguration> { $0.label }
| `- warning: stored property 'listItem' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
179 |
180 | /// The task list marker style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// 
40 | public struct BlockStyle<Configuration> {
| `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 | private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:181:14: warning: stored property 'taskListMarker' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<TaskListMarkerConfiguration>'; this is an error in the Swift 6 language mode
179 |
180 | /// The task list marker style.
181 | public var taskListMarker = BlockStyle.checkmarkSquare
| `- warning: stored property 'taskListMarker' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<TaskListMarkerConfiguration>'; this is an error in the Swift 6 language mode
182 |
183 | /// The bulleted list marker style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// 
40 | public struct BlockStyle<Configuration> {
| `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 | private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:184:14: warning: stored property 'bulletedListMarker' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<ListMarkerConfiguration>'; this is an error in the Swift 6 language mode
182 |
183 | /// The bulleted list marker style.
184 | public var bulletedListMarker = BlockStyle.discCircleSquare
| `- warning: stored property 'bulletedListMarker' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<ListMarkerConfiguration>'; this is an error in the Swift 6 language mode
185 |
186 | /// The numbered list marker style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// 
40 | public struct BlockStyle<Configuration> {
| `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 | private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:187:14: warning: stored property 'numberedListMarker' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<ListMarkerConfiguration>'; this is an error in the Swift 6 language mode
185 |
186 | /// The numbered list marker style.
187 | public var numberedListMarker = BlockStyle.decimal
| `- warning: stored property 'numberedListMarker' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<ListMarkerConfiguration>'; this is an error in the Swift 6 language mode
188 |
189 | /// The table style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// 
40 | public struct BlockStyle<Configuration> {
| `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 | private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:190:14: warning: stored property 'table' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
188 |
189 | /// The table style.
190 | public var table = BlockStyle<BlockConfiguration> { $0.label }
| `- warning: stored property 'table' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
191 |
192 | /// The table cell style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// 
40 | public struct BlockStyle<Configuration> {
| `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 | private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:193:14: warning: stored property 'tableCell' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<TableCellConfiguration>'; this is an error in the Swift 6 language mode
191 |
192 | /// The table cell style.
193 | public var tableCell = BlockStyle<TableCellConfiguration> { $0.label }
| `- warning: stored property 'tableCell' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<TableCellConfiguration>'; this is an error in the Swift 6 language mode
194 |
195 | /// The thematic break style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// 
40 | public struct BlockStyle<Configuration> {
| `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 | private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:196:14: warning: stored property 'thematicBreak' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<()>'; this is an error in the Swift 6 language mode
194 |
195 | /// The thematic break style.
196 | public var thematicBreak = BlockStyle { Divider() }
| `- warning: stored property 'thematicBreak' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<()>'; this is an error in the Swift 6 language mode
197 |
198 | /// Creates a theme with default text styles.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// 
40 | public struct BlockStyle<Configuration> {
| `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 | private let body: (Configuration) -> AnyView
42 |
[159/175] Compiling MarkdownUI InlineNode+PlainText.swift
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:104:14: warning: stored property 'text' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
102 | public struct Theme: Sendable {
103 | /// The default text style.
104 | public var text: TextStyle = EmptyTextStyle()
| `- warning: stored property 'text' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
105 |
106 | /// The inline code style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/TextStyle/TextStyle.swift:60:17: note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
58 | ///
59 | /// 
60 | public protocol TextStyle {
| `- note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
61 | func _collectAttributes(in attributes: inout AttributeContainer)
62 | }
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:107:14: warning: stored property 'code' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
105 |
106 | /// The inline code style.
107 | public var code: TextStyle = FontFamilyVariant(.monospaced)
| `- warning: stored property 'code' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
108 |
109 | /// The emphasis style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/TextStyle/TextStyle.swift:60:17: note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
58 | ///
59 | /// 
60 | public protocol TextStyle {
| `- note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
61 | func _collectAttributes(in attributes: inout AttributeContainer)
62 | }
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:110:14: warning: stored property 'emphasis' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
108 |
109 | /// The emphasis style.
110 | public var emphasis: TextStyle = FontStyle(.italic)
| `- warning: stored property 'emphasis' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
111 |
112 | /// The strong style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/TextStyle/TextStyle.swift:60:17: note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
58 | ///
59 | /// 
60 | public protocol TextStyle {
| `- note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
61 | func _collectAttributes(in attributes: inout AttributeContainer)
62 | }
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:113:14: warning: stored property 'strong' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
111 |
112 | /// The strong style.
113 | public var strong: TextStyle = FontWeight(.semibold)
| `- warning: stored property 'strong' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
114 |
115 | /// The strikethrough style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/TextStyle/TextStyle.swift:60:17: note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
58 | ///
59 | /// 
60 | public protocol TextStyle {
| `- note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
61 | func _collectAttributes(in attributes: inout AttributeContainer)
62 | }
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:116:14: warning: stored property 'strikethrough' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
114 |
115 | /// The strikethrough style.
116 | public var strikethrough: TextStyle = StrikethroughStyle(.single)
| `- warning: stored property 'strikethrough' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
117 |
118 | /// The link style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/TextStyle/TextStyle.swift:60:17: note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
58 | ///
59 | /// 
60 | public protocol TextStyle {
| `- note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
61 | func _collectAttributes(in attributes: inout AttributeContainer)
62 | }
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:119:14: warning: stored property 'link' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
117 |
118 | /// The link style.
119 | public var link: TextStyle = EmptyTextStyle()
| `- warning: stored property 'link' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
120 |
121 | var headings = Array(
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/TextStyle/TextStyle.swift:60:17: note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
58 | ///
59 | /// 
60 | public protocol TextStyle {
| `- note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
61 | func _collectAttributes(in attributes: inout AttributeContainer)
62 | }
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:121:7: warning: stored property 'headings' of 'Sendable'-conforming struct 'Theme' contains non-Sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
119 | public var link: TextStyle = EmptyTextStyle()
120 |
121 | var headings = Array(
| `- warning: stored property 'headings' of 'Sendable'-conforming struct 'Theme' contains non-Sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
122 | repeating: BlockStyle<BlockConfiguration> { $0.label },
123 | count: 6
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// 
40 | public struct BlockStyle<Configuration> {
| `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 | private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:163:14: warning: stored property 'paragraph' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
161 |
162 | /// The paragraph style.
163 | public var paragraph = BlockStyle<BlockConfiguration> { $0.label }
| `- warning: stored property 'paragraph' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
164 |
165 | /// The blockquote style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// 
40 | public struct BlockStyle<Configuration> {
| `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 | private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:166:14: warning: stored property 'blockquote' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
164 |
165 | /// The blockquote style.
166 | public var blockquote = BlockStyle<BlockConfiguration> { $0.label }
| `- warning: stored property 'blockquote' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
167 |
168 | /// The code block style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// 
40 | public struct BlockStyle<Configuration> {
| `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 | private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:169:14: warning: stored property 'codeBlock' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<CodeBlockConfiguration>'; this is an error in the Swift 6 language mode
167 |
168 | /// The code block style.
169 | public var codeBlock = BlockStyle<CodeBlockConfiguration> { $0.label }
| `- warning: stored property 'codeBlock' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<CodeBlockConfiguration>'; this is an error in the Swift 6 language mode
170 |
171 | /// The image style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// 
40 | public struct BlockStyle<Configuration> {
| `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 | private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:172:14: warning: stored property 'image' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
170 |
171 | /// The image style.
172 | public var image = BlockStyle<BlockConfiguration> { $0.label }
| `- warning: stored property 'image' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
173 |
174 | /// The list style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// 
40 | public struct BlockStyle<Configuration> {
| `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 | private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:175:14: warning: stored property 'list' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
173 |
174 | /// The list style.
175 | public var list = BlockStyle<BlockConfiguration> { $0.label }
| `- warning: stored property 'list' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
176 |
177 | /// The list item style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// 
40 | public struct BlockStyle<Configuration> {
| `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 | private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:178:14: warning: stored property 'listItem' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
176 |
177 | /// The list item style.
178 | public var listItem = BlockStyle<BlockConfiguration> { $0.label }
| `- warning: stored property 'listItem' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
179 |
180 | /// The task list marker style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// 
40 | public struct BlockStyle<Configuration> {
| `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 | private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:181:14: warning: stored property 'taskListMarker' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<TaskListMarkerConfiguration>'; this is an error in the Swift 6 language mode
179 |
180 | /// The task list marker style.
181 | public var taskListMarker = BlockStyle.checkmarkSquare
| `- warning: stored property 'taskListMarker' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<TaskListMarkerConfiguration>'; this is an error in the Swift 6 language mode
182 |
183 | /// The bulleted list marker style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// 
40 | public struct BlockStyle<Configuration> {
| `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 | private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:184:14: warning: stored property 'bulletedListMarker' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<ListMarkerConfiguration>'; this is an error in the Swift 6 language mode
182 |
183 | /// The bulleted list marker style.
184 | public var bulletedListMarker = BlockStyle.discCircleSquare
| `- warning: stored property 'bulletedListMarker' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<ListMarkerConfiguration>'; this is an error in the Swift 6 language mode
185 |
186 | /// The numbered list marker style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// 
40 | public struct BlockStyle<Configuration> {
| `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 | private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:187:14: warning: stored property 'numberedListMarker' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<ListMarkerConfiguration>'; this is an error in the Swift 6 language mode
185 |
186 | /// The numbered list marker style.
187 | public var numberedListMarker = BlockStyle.decimal
| `- warning: stored property 'numberedListMarker' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<ListMarkerConfiguration>'; this is an error in the Swift 6 language mode
188 |
189 | /// The table style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// 
40 | public struct BlockStyle<Configuration> {
| `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 | private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:190:14: warning: stored property 'table' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
188 |
189 | /// The table style.
190 | public var table = BlockStyle<BlockConfiguration> { $0.label }
| `- warning: stored property 'table' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
191 |
192 | /// The table cell style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// 
40 | public struct BlockStyle<Configuration> {
| `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 | private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:193:14: warning: stored property 'tableCell' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<TableCellConfiguration>'; this is an error in the Swift 6 language mode
191 |
192 | /// The table cell style.
193 | public var tableCell = BlockStyle<TableCellConfiguration> { $0.label }
| `- warning: stored property 'tableCell' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<TableCellConfiguration>'; this is an error in the Swift 6 language mode
194 |
195 | /// The thematic break style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// 
40 | public struct BlockStyle<Configuration> {
| `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 | private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:196:14: warning: stored property 'thematicBreak' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<()>'; this is an error in the Swift 6 language mode
194 |
195 | /// The thematic break style.
196 | public var thematicBreak = BlockStyle { Divider() }
| `- warning: stored property 'thematicBreak' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<()>'; this is an error in the Swift 6 language mode
197 |
198 | /// Creates a theme with default text styles.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// 
40 | public struct BlockStyle<Configuration> {
| `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 | private let body: (Configuration) -> AnyView
42 |
[160/175] Compiling MarkdownUI InlineNode+RawImageData.swift
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:104:14: warning: stored property 'text' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
102 | public struct Theme: Sendable {
103 | /// The default text style.
104 | public var text: TextStyle = EmptyTextStyle()
| `- warning: stored property 'text' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
105 |
106 | /// The inline code style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/TextStyle/TextStyle.swift:60:17: note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
58 | ///
59 | /// 
60 | public protocol TextStyle {
| `- note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
61 | func _collectAttributes(in attributes: inout AttributeContainer)
62 | }
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:107:14: warning: stored property 'code' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
105 |
106 | /// The inline code style.
107 | public var code: TextStyle = FontFamilyVariant(.monospaced)
| `- warning: stored property 'code' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
108 |
109 | /// The emphasis style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/TextStyle/TextStyle.swift:60:17: note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
58 | ///
59 | /// 
60 | public protocol TextStyle {
| `- note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
61 | func _collectAttributes(in attributes: inout AttributeContainer)
62 | }
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:110:14: warning: stored property 'emphasis' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
108 |
109 | /// The emphasis style.
110 | public var emphasis: TextStyle = FontStyle(.italic)
| `- warning: stored property 'emphasis' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
111 |
112 | /// The strong style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/TextStyle/TextStyle.swift:60:17: note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
58 | ///
59 | /// 
60 | public protocol TextStyle {
| `- note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
61 | func _collectAttributes(in attributes: inout AttributeContainer)
62 | }
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:113:14: warning: stored property 'strong' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
111 |
112 | /// The strong style.
113 | public var strong: TextStyle = FontWeight(.semibold)
| `- warning: stored property 'strong' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
114 |
115 | /// The strikethrough style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/TextStyle/TextStyle.swift:60:17: note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
58 | ///
59 | /// 
60 | public protocol TextStyle {
| `- note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
61 | func _collectAttributes(in attributes: inout AttributeContainer)
62 | }
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:116:14: warning: stored property 'strikethrough' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
114 |
115 | /// The strikethrough style.
116 | public var strikethrough: TextStyle = StrikethroughStyle(.single)
| `- warning: stored property 'strikethrough' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
117 |
118 | /// The link style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/TextStyle/TextStyle.swift:60:17: note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
58 | ///
59 | /// 
60 | public protocol TextStyle {
| `- note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
61 | func _collectAttributes(in attributes: inout AttributeContainer)
62 | }
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:119:14: warning: stored property 'link' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
117 |
118 | /// The link style.
119 | public var link: TextStyle = EmptyTextStyle()
| `- warning: stored property 'link' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
120 |
121 | var headings = Array(
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/TextStyle/TextStyle.swift:60:17: note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
58 | ///
59 | /// 
60 | public protocol TextStyle {
| `- note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
61 | func _collectAttributes(in attributes: inout AttributeContainer)
62 | }
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:121:7: warning: stored property 'headings' of 'Sendable'-conforming struct 'Theme' contains non-Sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
119 | public var link: TextStyle = EmptyTextStyle()
120 |
121 | var headings = Array(
| `- warning: stored property 'headings' of 'Sendable'-conforming struct 'Theme' contains non-Sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
122 | repeating: BlockStyle<BlockConfiguration> { $0.label },
123 | count: 6
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// 
40 | public struct BlockStyle<Configuration> {
| `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 | private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:163:14: warning: stored property 'paragraph' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
161 |
162 | /// The paragraph style.
163 | public var paragraph = BlockStyle<BlockConfiguration> { $0.label }
| `- warning: stored property 'paragraph' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
164 |
165 | /// The blockquote style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// 
40 | public struct BlockStyle<Configuration> {
| `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 | private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:166:14: warning: stored property 'blockquote' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
164 |
165 | /// The blockquote style.
166 | public var blockquote = BlockStyle<BlockConfiguration> { $0.label }
| `- warning: stored property 'blockquote' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
167 |
168 | /// The code block style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// 
40 | public struct BlockStyle<Configuration> {
| `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 | private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:169:14: warning: stored property 'codeBlock' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<CodeBlockConfiguration>'; this is an error in the Swift 6 language mode
167 |
168 | /// The code block style.
169 | public var codeBlock = BlockStyle<CodeBlockConfiguration> { $0.label }
| `- warning: stored property 'codeBlock' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<CodeBlockConfiguration>'; this is an error in the Swift 6 language mode
170 |
171 | /// The image style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// 
40 | public struct BlockStyle<Configuration> {
| `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 | private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:172:14: warning: stored property 'image' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
170 |
171 | /// The image style.
172 | public var image = BlockStyle<BlockConfiguration> { $0.label }
| `- warning: stored property 'image' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
173 |
174 | /// The list style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// 
40 | public struct BlockStyle<Configuration> {
| `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 | private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:175:14: warning: stored property 'list' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
173 |
174 | /// The list style.
175 | public var list = BlockStyle<BlockConfiguration> { $0.label }
| `- warning: stored property 'list' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
176 |
177 | /// The list item style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// 
40 | public struct BlockStyle<Configuration> {
| `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 | private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:178:14: warning: stored property 'listItem' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
176 |
177 | /// The list item style.
178 | public var listItem = BlockStyle<BlockConfiguration> { $0.label }
| `- warning: stored property 'listItem' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
179 |
180 | /// The task list marker style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// 
40 | public struct BlockStyle<Configuration> {
| `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 | private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:181:14: warning: stored property 'taskListMarker' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<TaskListMarkerConfiguration>'; this is an error in the Swift 6 language mode
179 |
180 | /// The task list marker style.
181 | public var taskListMarker = BlockStyle.checkmarkSquare
| `- warning: stored property 'taskListMarker' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<TaskListMarkerConfiguration>'; this is an error in the Swift 6 language mode
182 |
183 | /// The bulleted list marker style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// 
40 | public struct BlockStyle<Configuration> {
| `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 | private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:184:14: warning: stored property 'bulletedListMarker' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<ListMarkerConfiguration>'; this is an error in the Swift 6 language mode
182 |
183 | /// The bulleted list marker style.
184 | public var bulletedListMarker = BlockStyle.discCircleSquare
| `- warning: stored property 'bulletedListMarker' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<ListMarkerConfiguration>'; this is an error in the Swift 6 language mode
185 |
186 | /// The numbered list marker style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// 
40 | public struct BlockStyle<Configuration> {
| `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 | private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:187:14: warning: stored property 'numberedListMarker' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<ListMarkerConfiguration>'; this is an error in the Swift 6 language mode
185 |
186 | /// The numbered list marker style.
187 | public var numberedListMarker = BlockStyle.decimal
| `- warning: stored property 'numberedListMarker' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<ListMarkerConfiguration>'; this is an error in the Swift 6 language mode
188 |
189 | /// The table style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// 
40 | public struct BlockStyle<Configuration> {
| `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 | private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:190:14: warning: stored property 'table' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
188 |
189 | /// The table style.
190 | public var table = BlockStyle<BlockConfiguration> { $0.label }
| `- warning: stored property 'table' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
191 |
192 | /// The table cell style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// 
40 | public struct BlockStyle<Configuration> {
| `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 | private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:193:14: warning: stored property 'tableCell' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<TableCellConfiguration>'; this is an error in the Swift 6 language mode
191 |
192 | /// The table cell style.
193 | public var tableCell = BlockStyle<TableCellConfiguration> { $0.label }
| `- warning: stored property 'tableCell' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<TableCellConfiguration>'; this is an error in the Swift 6 language mode
194 |
195 | /// The thematic break style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// 
40 | public struct BlockStyle<Configuration> {
| `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 | private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:196:14: warning: stored property 'thematicBreak' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<()>'; this is an error in the Swift 6 language mode
194 |
195 | /// The thematic break style.
196 | public var thematicBreak = BlockStyle { Divider() }
| `- warning: stored property 'thematicBreak' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<()>'; this is an error in the Swift 6 language mode
197 |
198 | /// Creates a theme with default text styles.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// 
40 | public struct BlockStyle<Configuration> {
| `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 | private let body: (Configuration) -> AnyView
42 |
[161/175] Compiling MarkdownUI Int+Roman.swift
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:104:14: warning: stored property 'text' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
102 | public struct Theme: Sendable {
103 | /// The default text style.
104 | public var text: TextStyle = EmptyTextStyle()
| `- warning: stored property 'text' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
105 |
106 | /// The inline code style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/TextStyle/TextStyle.swift:60:17: note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
58 | ///
59 | /// 
60 | public protocol TextStyle {
| `- note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
61 | func _collectAttributes(in attributes: inout AttributeContainer)
62 | }
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:107:14: warning: stored property 'code' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
105 |
106 | /// The inline code style.
107 | public var code: TextStyle = FontFamilyVariant(.monospaced)
| `- warning: stored property 'code' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
108 |
109 | /// The emphasis style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/TextStyle/TextStyle.swift:60:17: note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
58 | ///
59 | /// 
60 | public protocol TextStyle {
| `- note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
61 | func _collectAttributes(in attributes: inout AttributeContainer)
62 | }
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:110:14: warning: stored property 'emphasis' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
108 |
109 | /// The emphasis style.
110 | public var emphasis: TextStyle = FontStyle(.italic)
| `- warning: stored property 'emphasis' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
111 |
112 | /// The strong style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/TextStyle/TextStyle.swift:60:17: note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
58 | ///
59 | /// 
60 | public protocol TextStyle {
| `- note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
61 | func _collectAttributes(in attributes: inout AttributeContainer)
62 | }
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:113:14: warning: stored property 'strong' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
111 |
112 | /// The strong style.
113 | public var strong: TextStyle = FontWeight(.semibold)
| `- warning: stored property 'strong' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
114 |
115 | /// The strikethrough style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/TextStyle/TextStyle.swift:60:17: note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
58 | ///
59 | /// 
60 | public protocol TextStyle {
| `- note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
61 | func _collectAttributes(in attributes: inout AttributeContainer)
62 | }
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:116:14: warning: stored property 'strikethrough' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
114 |
115 | /// The strikethrough style.
116 | public var strikethrough: TextStyle = StrikethroughStyle(.single)
| `- warning: stored property 'strikethrough' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
117 |
118 | /// The link style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/TextStyle/TextStyle.swift:60:17: note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
58 | ///
59 | /// 
60 | public protocol TextStyle {
| `- note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
61 | func _collectAttributes(in attributes: inout AttributeContainer)
62 | }
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:119:14: warning: stored property 'link' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
117 |
118 | /// The link style.
119 | public var link: TextStyle = EmptyTextStyle()
| `- warning: stored property 'link' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
120 |
121 | var headings = Array(
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/TextStyle/TextStyle.swift:60:17: note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
58 | ///
59 | /// 
60 | public protocol TextStyle {
| `- note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
61 | func _collectAttributes(in attributes: inout AttributeContainer)
62 | }
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:121:7: warning: stored property 'headings' of 'Sendable'-conforming struct 'Theme' contains non-Sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
119 | public var link: TextStyle = EmptyTextStyle()
120 |
121 | var headings = Array(
| `- warning: stored property 'headings' of 'Sendable'-conforming struct 'Theme' contains non-Sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
122 | repeating: BlockStyle<BlockConfiguration> { $0.label },
123 | count: 6
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// 
40 | public struct BlockStyle<Configuration> {
| `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 | private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:163:14: warning: stored property 'paragraph' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
161 |
162 | /// The paragraph style.
163 | public var paragraph = BlockStyle<BlockConfiguration> { $0.label }
| `- warning: stored property 'paragraph' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
164 |
165 | /// The blockquote style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// 
40 | public struct BlockStyle<Configuration> {
| `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 | private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:166:14: warning: stored property 'blockquote' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
164 |
165 | /// The blockquote style.
166 | public var blockquote = BlockStyle<BlockConfiguration> { $0.label }
| `- warning: stored property 'blockquote' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
167 |
168 | /// The code block style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// 
40 | public struct BlockStyle<Configuration> {
| `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 | private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:169:14: warning: stored property 'codeBlock' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<CodeBlockConfiguration>'; this is an error in the Swift 6 language mode
167 |
168 | /// The code block style.
169 | public var codeBlock = BlockStyle<CodeBlockConfiguration> { $0.label }
| `- warning: stored property 'codeBlock' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<CodeBlockConfiguration>'; this is an error in the Swift 6 language mode
170 |
171 | /// The image style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// 
40 | public struct BlockStyle<Configuration> {
| `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 | private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:172:14: warning: stored property 'image' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
170 |
171 | /// The image style.
172 | public var image = BlockStyle<BlockConfiguration> { $0.label }
| `- warning: stored property 'image' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
173 |
174 | /// The list style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// 
40 | public struct BlockStyle<Configuration> {
| `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 | private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:175:14: warning: stored property 'list' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
173 |
174 | /// The list style.
175 | public var list = BlockStyle<BlockConfiguration> { $0.label }
| `- warning: stored property 'list' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
176 |
177 | /// The list item style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// 
40 | public struct BlockStyle<Configuration> {
| `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 | private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:178:14: warning: stored property 'listItem' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
176 |
177 | /// The list item style.
178 | public var listItem = BlockStyle<BlockConfiguration> { $0.label }
| `- warning: stored property 'listItem' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
179 |
180 | /// The task list marker style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// 
40 | public struct BlockStyle<Configuration> {
| `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 | private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:181:14: warning: stored property 'taskListMarker' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<TaskListMarkerConfiguration>'; this is an error in the Swift 6 language mode
179 |
180 | /// The task list marker style.
181 | public var taskListMarker = BlockStyle.checkmarkSquare
| `- warning: stored property 'taskListMarker' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<TaskListMarkerConfiguration>'; this is an error in the Swift 6 language mode
182 |
183 | /// The bulleted list marker style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// 
40 | public struct BlockStyle<Configuration> {
| `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 | private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:184:14: warning: stored property 'bulletedListMarker' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<ListMarkerConfiguration>'; this is an error in the Swift 6 language mode
182 |
183 | /// The bulleted list marker style.
184 | public var bulletedListMarker = BlockStyle.discCircleSquare
| `- warning: stored property 'bulletedListMarker' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<ListMarkerConfiguration>'; this is an error in the Swift 6 language mode
185 |
186 | /// The numbered list marker style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// 
40 | public struct BlockStyle<Configuration> {
| `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 | private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:187:14: warning: stored property 'numberedListMarker' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<ListMarkerConfiguration>'; this is an error in the Swift 6 language mode
185 |
186 | /// The numbered list marker style.
187 | public var numberedListMarker = BlockStyle.decimal
| `- warning: stored property 'numberedListMarker' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<ListMarkerConfiguration>'; this is an error in the Swift 6 language mode
188 |
189 | /// The table style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// 
40 | public struct BlockStyle<Configuration> {
| `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 | private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:190:14: warning: stored property 'table' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
188 |
189 | /// The table style.
190 | public var table = BlockStyle<BlockConfiguration> { $0.label }
| `- warning: stored property 'table' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
191 |
192 | /// The table cell style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// 
40 | public struct BlockStyle<Configuration> {
| `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 | private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:193:14: warning: stored property 'tableCell' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<TableCellConfiguration>'; this is an error in the Swift 6 language mode
191 |
192 | /// The table cell style.
193 | public var tableCell = BlockStyle<TableCellConfiguration> { $0.label }
| `- warning: stored property 'tableCell' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<TableCellConfiguration>'; this is an error in the Swift 6 language mode
194 |
195 | /// The thematic break style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// 
40 | public struct BlockStyle<Configuration> {
| `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 | private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:196:14: warning: stored property 'thematicBreak' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<()>'; this is an error in the Swift 6 language mode
194 |
195 | /// The thematic break style.
196 | public var thematicBreak = BlockStyle { Divider() }
| `- warning: stored property 'thematicBreak' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<()>'; this is an error in the Swift 6 language mode
197 |
198 | /// Creates a theme with default text styles.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// 
40 | public struct BlockStyle<Configuration> {
| `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 | private let body: (Configuration) -> AnyView
42 |
[162/175] Compiling MarkdownUI RelativeSize.swift
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:104:14: warning: stored property 'text' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
102 | public struct Theme: Sendable {
103 | /// The default text style.
104 | public var text: TextStyle = EmptyTextStyle()
| `- warning: stored property 'text' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
105 |
106 | /// The inline code style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/TextStyle/TextStyle.swift:60:17: note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
58 | ///
59 | /// 
60 | public protocol TextStyle {
| `- note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
61 | func _collectAttributes(in attributes: inout AttributeContainer)
62 | }
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:107:14: warning: stored property 'code' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
105 |
106 | /// The inline code style.
107 | public var code: TextStyle = FontFamilyVariant(.monospaced)
| `- warning: stored property 'code' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
108 |
109 | /// The emphasis style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/TextStyle/TextStyle.swift:60:17: note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
58 | ///
59 | /// 
60 | public protocol TextStyle {
| `- note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
61 | func _collectAttributes(in attributes: inout AttributeContainer)
62 | }
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:110:14: warning: stored property 'emphasis' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
108 |
109 | /// The emphasis style.
110 | public var emphasis: TextStyle = FontStyle(.italic)
| `- warning: stored property 'emphasis' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
111 |
112 | /// The strong style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/TextStyle/TextStyle.swift:60:17: note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
58 | ///
59 | /// 
60 | public protocol TextStyle {
| `- note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
61 | func _collectAttributes(in attributes: inout AttributeContainer)
62 | }
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:113:14: warning: stored property 'strong' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
111 |
112 | /// The strong style.
113 | public var strong: TextStyle = FontWeight(.semibold)
| `- warning: stored property 'strong' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
114 |
115 | /// The strikethrough style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/TextStyle/TextStyle.swift:60:17: note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
58 | ///
59 | /// 
60 | public protocol TextStyle {
| `- note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
61 | func _collectAttributes(in attributes: inout AttributeContainer)
62 | }
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:116:14: warning: stored property 'strikethrough' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
114 |
115 | /// The strikethrough style.
116 | public var strikethrough: TextStyle = StrikethroughStyle(.single)
| `- warning: stored property 'strikethrough' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
117 |
118 | /// The link style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/TextStyle/TextStyle.swift:60:17: note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
58 | ///
59 | /// 
60 | public protocol TextStyle {
| `- note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
61 | func _collectAttributes(in attributes: inout AttributeContainer)
62 | }
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:119:14: warning: stored property 'link' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
117 |
118 | /// The link style.
119 | public var link: TextStyle = EmptyTextStyle()
| `- warning: stored property 'link' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
120 |
121 | var headings = Array(
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/TextStyle/TextStyle.swift:60:17: note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
58 | ///
59 | /// 
60 | public protocol TextStyle {
| `- note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
61 | func _collectAttributes(in attributes: inout AttributeContainer)
62 | }
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:121:7: warning: stored property 'headings' of 'Sendable'-conforming struct 'Theme' contains non-Sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
119 | public var link: TextStyle = EmptyTextStyle()
120 |
121 | var headings = Array(
| `- warning: stored property 'headings' of 'Sendable'-conforming struct 'Theme' contains non-Sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
122 | repeating: BlockStyle<BlockConfiguration> { $0.label },
123 | count: 6
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// 
40 | public struct BlockStyle<Configuration> {
| `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 | private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:163:14: warning: stored property 'paragraph' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
161 |
162 | /// The paragraph style.
163 | public var paragraph = BlockStyle<BlockConfiguration> { $0.label }
| `- warning: stored property 'paragraph' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
164 |
165 | /// The blockquote style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// 
40 | public struct BlockStyle<Configuration> {
| `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 | private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:166:14: warning: stored property 'blockquote' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
164 |
165 | /// The blockquote style.
166 | public var blockquote = BlockStyle<BlockConfiguration> { $0.label }
| `- warning: stored property 'blockquote' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
167 |
168 | /// The code block style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// 
40 | public struct BlockStyle<Configuration> {
| `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 | private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:169:14: warning: stored property 'codeBlock' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<CodeBlockConfiguration>'; this is an error in the Swift 6 language mode
167 |
168 | /// The code block style.
169 | public var codeBlock = BlockStyle<CodeBlockConfiguration> { $0.label }
| `- warning: stored property 'codeBlock' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<CodeBlockConfiguration>'; this is an error in the Swift 6 language mode
170 |
171 | /// The image style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// 
40 | public struct BlockStyle<Configuration> {
| `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 | private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:172:14: warning: stored property 'image' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
170 |
171 | /// The image style.
172 | public var image = BlockStyle<BlockConfiguration> { $0.label }
| `- warning: stored property 'image' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
173 |
174 | /// The list style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// 
40 | public struct BlockStyle<Configuration> {
| `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 | private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:175:14: warning: stored property 'list' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
173 |
174 | /// The list style.
175 | public var list = BlockStyle<BlockConfiguration> { $0.label }
| `- warning: stored property 'list' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
176 |
177 | /// The list item style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// 
40 | public struct BlockStyle<Configuration> {
| `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 | private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:178:14: warning: stored property 'listItem' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
176 |
177 | /// The list item style.
178 | public var listItem = BlockStyle<BlockConfiguration> { $0.label }
| `- warning: stored property 'listItem' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
179 |
180 | /// The task list marker style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// 
40 | public struct BlockStyle<Configuration> {
| `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 | private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:181:14: warning: stored property 'taskListMarker' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<TaskListMarkerConfiguration>'; this is an error in the Swift 6 language mode
179 |
180 | /// The task list marker style.
181 | public var taskListMarker = BlockStyle.checkmarkSquare
| `- warning: stored property 'taskListMarker' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<TaskListMarkerConfiguration>'; this is an error in the Swift 6 language mode
182 |
183 | /// The bulleted list marker style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// 
40 | public struct BlockStyle<Configuration> {
| `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 | private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:184:14: warning: stored property 'bulletedListMarker' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<ListMarkerConfiguration>'; this is an error in the Swift 6 language mode
182 |
183 | /// The bulleted list marker style.
184 | public var bulletedListMarker = BlockStyle.discCircleSquare
| `- warning: stored property 'bulletedListMarker' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<ListMarkerConfiguration>'; this is an error in the Swift 6 language mode
185 |
186 | /// The numbered list marker style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// 
40 | public struct BlockStyle<Configuration> {
| `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 | private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:187:14: warning: stored property 'numberedListMarker' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<ListMarkerConfiguration>'; this is an error in the Swift 6 language mode
185 |
186 | /// The numbered list marker style.
187 | public var numberedListMarker = BlockStyle.decimal
| `- warning: stored property 'numberedListMarker' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<ListMarkerConfiguration>'; this is an error in the Swift 6 language mode
188 |
189 | /// The table style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// 
40 | public struct BlockStyle<Configuration> {
| `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 | private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:190:14: warning: stored property 'table' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
188 |
189 | /// The table style.
190 | public var table = BlockStyle<BlockConfiguration> { $0.label }
| `- warning: stored property 'table' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
191 |
192 | /// The table cell style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// 
40 | public struct BlockStyle<Configuration> {
| `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 | private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:193:14: warning: stored property 'tableCell' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<TableCellConfiguration>'; this is an error in the Swift 6 language mode
191 |
192 | /// The table cell style.
193 | public var tableCell = BlockStyle<TableCellConfiguration> { $0.label }
| `- warning: stored property 'tableCell' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<TableCellConfiguration>'; this is an error in the Swift 6 language mode
194 |
195 | /// The thematic break style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// 
40 | public struct BlockStyle<Configuration> {
| `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 | private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:196:14: warning: stored property 'thematicBreak' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<()>'; this is an error in the Swift 6 language mode
194 |
195 | /// The thematic break style.
196 | public var thematicBreak = BlockStyle { Divider() }
| `- warning: stored property 'thematicBreak' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<()>'; this is an error in the Swift 6 language mode
197 |
198 | /// Creates a theme with default text styles.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// 
40 | public struct BlockStyle<Configuration> {
| `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 | private let body: (Configuration) -> AnyView
42 |
[163/175] Compiling MarkdownUI ResizeToFit.swift
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:104:14: warning: stored property 'text' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
102 | public struct Theme: Sendable {
103 | /// The default text style.
104 | public var text: TextStyle = EmptyTextStyle()
| `- warning: stored property 'text' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
105 |
106 | /// The inline code style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/TextStyle/TextStyle.swift:60:17: note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
58 | ///
59 | /// 
60 | public protocol TextStyle {
| `- note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
61 | func _collectAttributes(in attributes: inout AttributeContainer)
62 | }
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:107:14: warning: stored property 'code' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
105 |
106 | /// The inline code style.
107 | public var code: TextStyle = FontFamilyVariant(.monospaced)
| `- warning: stored property 'code' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
108 |
109 | /// The emphasis style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/TextStyle/TextStyle.swift:60:17: note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
58 | ///
59 | /// 
60 | public protocol TextStyle {
| `- note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
61 | func _collectAttributes(in attributes: inout AttributeContainer)
62 | }
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:110:14: warning: stored property 'emphasis' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
108 |
109 | /// The emphasis style.
110 | public var emphasis: TextStyle = FontStyle(.italic)
| `- warning: stored property 'emphasis' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
111 |
112 | /// The strong style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/TextStyle/TextStyle.swift:60:17: note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
58 | ///
59 | /// 
60 | public protocol TextStyle {
| `- note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
61 | func _collectAttributes(in attributes: inout AttributeContainer)
62 | }
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:113:14: warning: stored property 'strong' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
111 |
112 | /// The strong style.
113 | public var strong: TextStyle = FontWeight(.semibold)
| `- warning: stored property 'strong' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
114 |
115 | /// The strikethrough style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/TextStyle/TextStyle.swift:60:17: note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
58 | ///
59 | /// 
60 | public protocol TextStyle {
| `- note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
61 | func _collectAttributes(in attributes: inout AttributeContainer)
62 | }
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:116:14: warning: stored property 'strikethrough' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
114 |
115 | /// The strikethrough style.
116 | public var strikethrough: TextStyle = StrikethroughStyle(.single)
| `- warning: stored property 'strikethrough' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
117 |
118 | /// The link style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/TextStyle/TextStyle.swift:60:17: note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
58 | ///
59 | /// 
60 | public protocol TextStyle {
| `- note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
61 | func _collectAttributes(in attributes: inout AttributeContainer)
62 | }
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:119:14: warning: stored property 'link' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
117 |
118 | /// The link style.
119 | public var link: TextStyle = EmptyTextStyle()
| `- warning: stored property 'link' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'any TextStyle'; this is an error in the Swift 6 language mode
120 |
121 | var headings = Array(
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/TextStyle/TextStyle.swift:60:17: note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
58 | ///
59 | /// 
60 | public protocol TextStyle {
| `- note: protocol 'TextStyle' does not conform to the 'Sendable' protocol
61 | func _collectAttributes(in attributes: inout AttributeContainer)
62 | }
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:121:7: warning: stored property 'headings' of 'Sendable'-conforming struct 'Theme' contains non-Sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
119 | public var link: TextStyle = EmptyTextStyle()
120 |
121 | var headings = Array(
| `- warning: stored property 'headings' of 'Sendable'-conforming struct 'Theme' contains non-Sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
122 | repeating: BlockStyle<BlockConfiguration> { $0.label },
123 | count: 6
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// 
40 | public struct BlockStyle<Configuration> {
| `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 | private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:163:14: warning: stored property 'paragraph' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
161 |
162 | /// The paragraph style.
163 | public var paragraph = BlockStyle<BlockConfiguration> { $0.label }
| `- warning: stored property 'paragraph' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
164 |
165 | /// The blockquote style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// 
40 | public struct BlockStyle<Configuration> {
| `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 | private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:166:14: warning: stored property 'blockquote' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
164 |
165 | /// The blockquote style.
166 | public var blockquote = BlockStyle<BlockConfiguration> { $0.label }
| `- warning: stored property 'blockquote' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
167 |
168 | /// The code block style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// 
40 | public struct BlockStyle<Configuration> {
| `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 | private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:169:14: warning: stored property 'codeBlock' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<CodeBlockConfiguration>'; this is an error in the Swift 6 language mode
167 |
168 | /// The code block style.
169 | public var codeBlock = BlockStyle<CodeBlockConfiguration> { $0.label }
| `- warning: stored property 'codeBlock' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<CodeBlockConfiguration>'; this is an error in the Swift 6 language mode
170 |
171 | /// The image style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// 
40 | public struct BlockStyle<Configuration> {
| `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 | private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:172:14: warning: stored property 'image' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
170 |
171 | /// The image style.
172 | public var image = BlockStyle<BlockConfiguration> { $0.label }
| `- warning: stored property 'image' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
173 |
174 | /// The list style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// 
40 | public struct BlockStyle<Configuration> {
| `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 | private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:175:14: warning: stored property 'list' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
173 |
174 | /// The list style.
175 | public var list = BlockStyle<BlockConfiguration> { $0.label }
| `- warning: stored property 'list' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
176 |
177 | /// The list item style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// 
40 | public struct BlockStyle<Configuration> {
| `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 | private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:178:14: warning: stored property 'listItem' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
176 |
177 | /// The list item style.
178 | public var listItem = BlockStyle<BlockConfiguration> { $0.label }
| `- warning: stored property 'listItem' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
179 |
180 | /// The task list marker style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// 
40 | public struct BlockStyle<Configuration> {
| `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 | private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:181:14: warning: stored property 'taskListMarker' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<TaskListMarkerConfiguration>'; this is an error in the Swift 6 language mode
179 |
180 | /// The task list marker style.
181 | public var taskListMarker = BlockStyle.checkmarkSquare
| `- warning: stored property 'taskListMarker' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<TaskListMarkerConfiguration>'; this is an error in the Swift 6 language mode
182 |
183 | /// The bulleted list marker style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// 
40 | public struct BlockStyle<Configuration> {
| `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 | private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:184:14: warning: stored property 'bulletedListMarker' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<ListMarkerConfiguration>'; this is an error in the Swift 6 language mode
182 |
183 | /// The bulleted list marker style.
184 | public var bulletedListMarker = BlockStyle.discCircleSquare
| `- warning: stored property 'bulletedListMarker' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<ListMarkerConfiguration>'; this is an error in the Swift 6 language mode
185 |
186 | /// The numbered list marker style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// 
40 | public struct BlockStyle<Configuration> {
| `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 | private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:187:14: warning: stored property 'numberedListMarker' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<ListMarkerConfiguration>'; this is an error in the Swift 6 language mode
185 |
186 | /// The numbered list marker style.
187 | public var numberedListMarker = BlockStyle.decimal
| `- warning: stored property 'numberedListMarker' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<ListMarkerConfiguration>'; this is an error in the Swift 6 language mode
188 |
189 | /// The table style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// 
40 | public struct BlockStyle<Configuration> {
| `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 | private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:190:14: warning: stored property 'table' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
188 |
189 | /// The table style.
190 | public var table = BlockStyle<BlockConfiguration> { $0.label }
| `- warning: stored property 'table' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<BlockConfiguration>'; this is an error in the Swift 6 language mode
191 |
192 | /// The table cell style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// 
40 | public struct BlockStyle<Configuration> {
| `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 | private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:193:14: warning: stored property 'tableCell' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<TableCellConfiguration>'; this is an error in the Swift 6 language mode
191 |
192 | /// The table cell style.
193 | public var tableCell = BlockStyle<TableCellConfiguration> { $0.label }
| `- warning: stored property 'tableCell' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<TableCellConfiguration>'; this is an error in the Swift 6 language mode
194 |
195 | /// The thematic break style.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// 
40 | public struct BlockStyle<Configuration> {
| `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 | private let body: (Configuration) -> AnyView
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/Theme.swift:196:14: warning: stored property 'thematicBreak' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<()>'; this is an error in the Swift 6 language mode
194 |
195 | /// The thematic break style.
196 | public var thematicBreak = BlockStyle { Divider() }
| `- warning: stored property 'thematicBreak' of 'Sendable'-conforming struct 'Theme' has non-Sendable type 'BlockStyle<()>'; this is an error in the Swift 6 language mode
197 |
198 | /// Creates a theme with default text styles.
/Users/admin/builder/spi-builder-workspace/Sources/MarkdownUI/Theme/BlockStyle/BlockStyle.swift:40:15: note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
38 | ///
39 | /// 
40 | public struct BlockStyle<Configuration> {
| `- note: consider making generic struct 'BlockStyle' conform to the 'Sendable' protocol
41 | private let body: (Configuration) -> AnyView
42 |
[164/175] Compiling MarkdownUI Environment+BaseURL.swift
[165/175] Compiling MarkdownUI Environment+CodeSyntaxHighlighter.swift
[166/175] Compiling MarkdownUI Environment+ImageProvider.swift
[167/175] Compiling MarkdownUI Environment+InlineImageProvider.swift
[168/175] Compiling MarkdownUI Environment+List.swift
[169/175] Compiling MarkdownUI Environment+SoftBreakMode.swift
[170/175] Compiling MarkdownUI Environment+Table.swift
[171/175] Compiling MarkdownUI Environment+TextStyle.swift
[172/175] Compiling MarkdownUI Environment+Theme.swift
[173/175] Compiling MarkdownUI ImageView.swift
[174/175] Compiling MarkdownUI InlineText.swift
[175/175] Compiling MarkdownUI Markdown.swift
Build complete! (14.39s)
Build complete.
{
"dependencies" : [
{
"identity" : "networkimage",
"requirement" : {
"range" : [
{
"lower_bound" : "6.0.0",
"upper_bound" : "7.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/gonzalezreal/NetworkImage"
},
{
"identity" : "swift-snapshot-testing",
"requirement" : {
"range" : [
{
"lower_bound" : "1.10.0",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/pointfreeco/swift-snapshot-testing"
},
{
"identity" : "swift-cmark",
"requirement" : {
"range" : [
{
"lower_bound" : "0.4.0",
"upper_bound" : "1.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/swiftlang/swift-cmark"
}
],
"manifest_display_name" : "swift-markdown-ui",
"name" : "swift-markdown-ui",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "macos",
"version" : "12.0"
},
{
"name" : "ios",
"version" : "15.0"
},
{
"name" : "tvos",
"version" : "15.0"
},
{
"name" : "maccatalyst",
"version" : "15.0"
},
{
"name" : "watchos",
"version" : "8.0"
}
],
"products" : [
{
"name" : "MarkdownUI",
"targets" : [
"MarkdownUI"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "MarkdownUITests",
"module_type" : "SwiftTarget",
"name" : "MarkdownUITests",
"path" : "Tests/MarkdownUITests",
"product_dependencies" : [
"SnapshotTesting"
],
"sources" : [
"FontPropertiesTests.swift",
"HTMLTagTests.swift",
"InlineContentBuilderTests.swift",
"ListContentBuilderTests.swift",
"MarkdownContentBuilderTests.swift",
"MarkdownContentTests.swift",
"MarkdownImageTests.swift",
"MarkdownListTests.swift",
"MarkdownTableTests.swift",
"MarkdownTests.swift",
"TaskListContentBuilderTests.swift",
"TextStyleBuilderTests.swift",
"ThemeDocCTests.swift",
"ThemeGitHubTests.swift",
"ThemePreview.swift"
],
"target_dependencies" : [
"MarkdownUI"
],
"type" : "test"
},
{
"c99name" : "MarkdownUI",
"module_type" : "SwiftTarget",
"name" : "MarkdownUI",
"path" : "Sources/MarkdownUI",
"product_dependencies" : [
"cmark-gfm",
"cmark-gfm-extensions",
"NetworkImage"
],
"product_memberships" : [
"MarkdownUI"
],
"sources" : [
"DSL/Blocks/Blockquote.swift",
"DSL/Blocks/BulletedList.swift",
"DSL/Blocks/CodeBlock.swift",
"DSL/Blocks/Heading.swift",
"DSL/Blocks/ListContentBuilder.swift",
"DSL/Blocks/ListItem.swift",
"DSL/Blocks/MarkdownContent.swift",
"DSL/Blocks/MarkdownContentBuilder.swift",
"DSL/Blocks/NumberedList.swift",
"DSL/Blocks/Paragraph.swift",
"DSL/Blocks/TaskList.swift",
"DSL/Blocks/TaskListContentBuilder.swift",
"DSL/Blocks/TaskListItem.swift",
"DSL/Blocks/TextTable.swift",
"DSL/Blocks/TextTableColumn.swift",
"DSL/Blocks/TextTableColumnAlignment.swift",
"DSL/Blocks/TextTableColumnBuilder.swift",
"DSL/Blocks/TextTableRow.swift",
"DSL/Blocks/TextTableRowBuilder.swift",
"DSL/Blocks/ThematicBreak.swift",
"DSL/Inlines/Code.swift",
"DSL/Inlines/Emphasis.swift",
"DSL/Inlines/InlineContent.swift",
"DSL/Inlines/InlineContentBuilder.swift",
"DSL/Inlines/InlineImage.swift",
"DSL/Inlines/InlineLink.swift",
"DSL/Inlines/LineBreak.swift",
"DSL/Inlines/SoftBreak.swift",
"DSL/Inlines/Strikethrough.swift",
"DSL/Inlines/Strong.swift",
"Extensibility/AssetImageProvider.swift",
"Extensibility/AssetInlineImageProvider.swift",
"Extensibility/CodeSyntaxHighlighter.swift",
"Extensibility/DefaultImageProvider.swift",
"Extensibility/DefaultInlineImageProvider.swift",
"Extensibility/ImageProvider.swift",
"Extensibility/InlineImageProvider.swift",
"Parser/BlockNode+Rewrite.swift",
"Parser/BlockNode.swift",
"Parser/HTMLTag.swift",
"Parser/InlineNode+Collect.swift",
"Parser/InlineNode+Rewrite.swift",
"Parser/InlineNode.swift",
"Parser/MarkdownParser.swift",
"Renderer/AttributedStringInlineRenderer.swift",
"Renderer/InlineTextStyles.swift",
"Renderer/TextInlineRenderer.swift",
"Theme/BlockStyle/BlockConfiguration.swift",
"Theme/BlockStyle/BlockStyle.swift",
"Theme/BlockStyle/CodeBlockConfiguration.swift",
"Theme/BlockStyle/ListBullet.swift",
"Theme/BlockStyle/ListMarkerConfiguration.swift",
"Theme/BlockStyle/TableBackgroundStyle.swift",
"Theme/BlockStyle/TableBorderStyle.swift",
"Theme/BlockStyle/TableCellConfiguration.swift",
"Theme/BlockStyle/TaskListMarkerConfiguration.swift",
"Theme/TextStyle/Styles/BackgroundColor.swift",
"Theme/TextStyle/Styles/EmptyTextStyle.swift",
"Theme/TextStyle/Styles/Font+FontProperties.swift",
"Theme/TextStyle/Styles/FontCapsVariant.swift",
"Theme/TextStyle/Styles/FontDigitVariant.swift",
"Theme/TextStyle/Styles/FontFamily.swift",
"Theme/TextStyle/Styles/FontFamilyVariant.swift",
"Theme/TextStyle/Styles/FontProperties.swift",
"Theme/TextStyle/Styles/FontPropertiesAttribute.swift",
"Theme/TextStyle/Styles/FontSize.swift",
"Theme/TextStyle/Styles/FontStyle.swift",
"Theme/TextStyle/Styles/FontWeight.swift",
"Theme/TextStyle/Styles/FontWidth.swift",
"Theme/TextStyle/Styles/ForegroundColor.swift",
"Theme/TextStyle/Styles/StrikethroughStyle.swift",
"Theme/TextStyle/Styles/TextKerning.swift",
"Theme/TextStyle/Styles/TextTracking.swift",
"Theme/TextStyle/Styles/UnderlineStyle.swift",
"Theme/TextStyle/TextStyle.swift",
"Theme/TextStyle/TextStyleBuilder.swift",
"Theme/Theme+Basic.swift",
"Theme/Theme+DocC.swift",
"Theme/Theme+GitHub.swift",
"Theme/Theme.swift",
"Utility/BlockNode+ColorSchemeImage.swift",
"Utility/Color+RGBA.swift",
"Utility/Deprecations.swift",
"Utility/FlowLayout.swift",
"Utility/Indexed.swift",
"Utility/InlineNode+PlainText.swift",
"Utility/InlineNode+RawImageData.swift",
"Utility/Int+Roman.swift",
"Utility/RelativeSize.swift",
"Utility/ResizeToFit.swift",
"Utility/String+KebabCase.swift",
"Views/Blocks/BlockMargin.swift",
"Views/Blocks/BlockNode+View.swift",
"Views/Blocks/BlockSequence.swift",
"Views/Blocks/BlockquoteView.swift",
"Views/Blocks/BulletedListView.swift",
"Views/Blocks/CodeBlockView.swift",
"Views/Blocks/ColumnWidthPreference.swift",
"Views/Blocks/HeadingView.swift",
"Views/Blocks/ImageFlow.swift",
"Views/Blocks/ListItemSequence.swift",
"Views/Blocks/ListItemView.swift",
"Views/Blocks/NumberedListView.swift",
"Views/Blocks/ParagraphView.swift",
"Views/Blocks/TableBackgroundView.swift",
"Views/Blocks/TableBorderSelector.swift",
"Views/Blocks/TableBorderView.swift",
"Views/Blocks/TableBounds.swift",
"Views/Blocks/TableCell.swift",
"Views/Blocks/TableView.swift",
"Views/Blocks/TaskListItemView.swift",
"Views/Blocks/TaskListView.swift",
"Views/Blocks/TextStyleAttributesReader.swift",
"Views/Blocks/ThematicBreakView.swift",
"Views/Environment/Environment+BaseURL.swift",
"Views/Environment/Environment+CodeSyntaxHighlighter.swift",
"Views/Environment/Environment+ImageProvider.swift",
"Views/Environment/Environment+InlineImageProvider.swift",
"Views/Environment/Environment+List.swift",
"Views/Environment/Environment+SoftBreakMode.swift",
"Views/Environment/Environment+Table.swift",
"Views/Environment/Environment+TextStyle.swift",
"Views/Environment/Environment+Theme.swift",
"Views/Inlines/ImageView.swift",
"Views/Inlines/InlineText.swift",
"Views/Markdown.swift"
],
"type" : "library"
}
],
"tools_version" : "5.6"
}
✅ Doc result (pending) reported
========================================
GenerateDocs
========================================
Generating docs at path: $PWD/.docs/gonzalezreal/swift-markdown-ui/main
Repository: gonzalezreal/swift-markdown-ui
Swift version used: 6.2
Target: MarkdownUI
Extracting symbol information for 'MarkdownUI'...
Finished extracting symbol information for 'MarkdownUI'. (4.25s)
Building documentation for 'MarkdownUI'...
warning: Parameter 'body' not found in instance method declaration
--> ../Theme/Theme.swift:374:7-374:83
372 |
373 | /// Adds a task list marker style to the theme.
374 + /// - Parameter body: A view builder that returns a customized task list marker.
| ╰─suggestion: Remove 'body' parameter documentation
375 | public func taskListMarker(_ taskListMarker: BlockStyle<TaskListMarkerConfiguration>) -> Theme {
376 | var theme = self
warning: Parameter 'taskListMarker' is missing documentation
--> ../Theme/Theme.swift:374:83-374:83
372 |
373 | /// Adds a task list marker style to the theme.
374 + /// - Parameter body: A view builder that returns a customized task list marker.
| ╰─suggestion: Document 'taskListMarker' parameter
375 | public func taskListMarker(_ taskListMarker: BlockStyle<TaskListMarkerConfiguration>) -> Theme {
376 | var theme = self
warning: Parameter 'body' not found in instance method declaration
--> ../Theme/Theme.swift:392:7-392:87
390 |
391 | /// Adds a bulleted list marker style to the theme.
392 + /// - Parameter body: A view builder that returns a customized bulleted list marker.
| ╰─suggestion: Remove 'body' parameter documentation
393 | public func bulletedListMarker(
394 | _ bulletedListMarker: BlockStyle<ListMarkerConfiguration>
warning: Parameter 'bulletedListMarker' is missing documentation
--> ../Theme/Theme.swift:392:87-392:87
390 |
391 | /// Adds a bulleted list marker style to the theme.
392 + /// - Parameter body: A view builder that returns a customized bulleted list marker.
| ╰─suggestion: Document 'bulletedListMarker' parameter
393 | public func bulletedListMarker(
394 | _ bulletedListMarker: BlockStyle<ListMarkerConfiguration>
warning: Parameter 'body' not found in instance method declaration
--> ../Theme/Theme.swift:412:7-412:87
410 |
411 | /// Adds a numbered list marker style to the theme.
412 + /// - Parameter body: A view builder that returns a customized numbered list marker.
| ╰─suggestion: Remove 'body' parameter documentation
413 | public func numberedListMarker(
414 | _ numberedListMarker: BlockStyle<ListMarkerConfiguration>
warning: Parameter 'numberedListMarker' is missing documentation
--> ../Theme/Theme.swift:412:87-412:87
410 |
411 | /// Adds a numbered list marker style to the theme.
412 + /// - Parameter body: A view builder that returns a customized numbered list marker.
| ╰─suggestion: Document 'numberedListMarker' parameter
413 | public func numberedListMarker(
414 | _ numberedListMarker: BlockStyle<ListMarkerConfiguration>
Finished building documentation for 'MarkdownUI' (2.58s)
Generated documentation archive at:
/Users/admin/builder/spi-builder-workspace/.docs/gonzalezreal/swift-markdown-ui/main
Fetching https://github.com/swiftlang/swift-docc-plugin
[1/2158] Fetching swift-docc-plugin
Updating https://github.com/swiftlang/swift-cmark
Updating https://github.com/gonzalezreal/NetworkImage
Updating https://github.com/pointfreeco/swift-snapshot-testing
Fetched https://github.com/swiftlang/swift-docc-plugin from cache (1.22s)
Updated https://github.com/swiftlang/swift-cmark (0.82s)
Updated https://github.com/pointfreeco/swift-snapshot-testing (0.82s)
Updated https://github.com/gonzalezreal/NetworkImage (0.82s)
Computing version for https://github.com/swiftlang/swift-cmark
Computed https://github.com/swiftlang/swift-cmark at 0.5.0 (2.57s)
Computing version for https://github.com/pointfreeco/swift-snapshot-testing
Computed https://github.com/pointfreeco/swift-snapshot-testing at 1.12.0 (0.49s)
Computing version for https://github.com/gonzalezreal/NetworkImage
Computed https://github.com/gonzalezreal/NetworkImage at 6.0.0 (0.53s)
Computing version for https://github.com/swiftlang/swift-docc-plugin
Computed https://github.com/swiftlang/swift-docc-plugin at 1.4.5 (0.72s)
Fetching https://github.com/swiftlang/swift-docc-symbolkit
[1/3630] Fetching swift-docc-symbolkit
Fetched https://github.com/swiftlang/swift-docc-symbolkit from cache (1.25s)
Computing version for https://github.com/swiftlang/swift-docc-symbolkit
Computed https://github.com/swiftlang/swift-docc-symbolkit at 1.0.0 (2.06s)
Creating working copy for https://github.com/swiftlang/swift-docc-plugin
Working copy of https://github.com/swiftlang/swift-docc-plugin resolved at 1.4.5
Creating working copy for https://github.com/swiftlang/swift-docc-symbolkit
Working copy of https://github.com/swiftlang/swift-docc-symbolkit resolved at 1.0.0
Building for debugging...
[0/8] Write sources
[0/8] Write snippet-extract-tool-entitlement.plist
[1/8] Write sources
[4/8] Write swift-version-49B95AFC49DCD68C.txt
[6/53] Compiling Snippets Snippet.swift
[7/53] Emitting module Snippets
[8/53] Compiling Snippets SnippetParser.swift
[9/53] Compiling SymbolKit Relationship.swift
[10/53] Compiling SymbolKit RelationshipKind.swift
[11/53] Compiling SymbolKit SourceOrigin.swift
[12/53] Compiling SymbolKit GenericConstraints.swift
[13/53] Compiling SymbolKit Swift.swift
[14/57] Compiling SymbolKit Symbol.swift
[15/57] Compiling SymbolKit SymbolKind.swift
[16/57] Compiling SymbolKit SymbolGraph.swift
[17/57] Compiling SymbolKit GraphCollector.swift
[18/57] Compiling SymbolKit DeclarationFragments.swift
[19/57] Compiling SymbolKit Fragment.swift
[20/57] Compiling SymbolKit FragmentKind.swift
[21/57] Compiling SymbolKit FunctionParameter.swift
[22/57] Compiling SymbolKit FunctionSignature.swift
[23/57] Compiling SymbolKit Identifier.swift
[24/57] Compiling SymbolKit KindIdentifier.swift
[25/57] Compiling SymbolKit Location.swift
[26/57] Compiling SymbolKit Mutability.swift
[27/57] Compiling SymbolKit Names.swift
[28/57] Compiling SymbolKit SPI.swift
[29/57] Compiling SymbolKit Snippet.swift
[30/57] Compiling SymbolKit Extension.swift
[31/57] Emitting module SymbolKit
[32/57] Compiling SymbolKit SourceRange.swift
[33/57] Compiling SymbolKit Metadata.swift
[34/57] Compiling SymbolKit Module.swift
[35/57] Compiling SymbolKit OperatingSystem.swift
[36/57] Compiling SymbolKit Platform.swift
[37/57] Compiling SymbolKit Mixin+Equals.swift
[38/57] Compiling SymbolKit Mixin+Hash.swift
[39/57] Compiling SymbolKit Mixin.swift
[40/57] Compiling SymbolKit LineList.swift
[41/57] Compiling SymbolKit Position.swift
[42/57] Compiling SymbolKit GenericConstraint.swift
[43/57] Compiling SymbolKit GenericParameter.swift
[44/57] Compiling SymbolKit Generics.swift
[45/57] Compiling SymbolKit Namespace.swift
[46/57] Compiling SymbolKit SemanticVersion.swift
[47/57] Compiling SymbolKit AccessControl.swift
[48/57] Compiling SymbolKit Availability.swift
[49/57] Compiling SymbolKit AvailabilityItem.swift
[50/57] Compiling SymbolKit Domain.swift
[51/57] Compiling SymbolKit UnifiedSymbol+Encodable.swift
[52/57] Compiling SymbolKit UnifiedSymbol.swift
[53/57] Compiling SymbolKit UnifiedSymbolGraph+Encodable.swift
[54/57] Compiling SymbolKit UnifiedSymbolGraph.swift
[55/61] Compiling snippet_extract URL+Status.swift
[56/61] Compiling snippet_extract SymbolGraph+Snippet.swift
[57/61] Emitting module snippet_extract
[58/61] Compiling snippet_extract SnippetBuildCommand.swift
[58/61] Write Objects.LinkFileList
[59/61] Linking snippet-extract-tool
[60/61] Applying snippet-extract-tool
Build of product 'snippet-extract' complete! (3.64s)
Building for debugging...
[0/1] Write swift-version-49B95AFC49DCD68C.txt
Build of target: 'MarkdownUI' complete! (0.27s)
7776
57 /Users/admin/builder/spi-builder-workspace/.docs/gonzalezreal/swift-markdown-ui/main
✅ Doc result (uploading) reported
========================================
SyncDocs
========================================
Doc archive source directory: $PWD/.docs/gonzalezreal/swift-markdown-ui/main
File count: 7776
Doc size: 57.0MB
Preparing doc bundle ...
Uploading prod-gonzalezreal-swift-markdown-ui-main-c9ff1480.zip to s3://spi-docs-inbox/prod-gonzalezreal-swift-markdown-ui-main-c9ff1480.zip
Copying... [10%]
Copying... [20%]
Copying... [30%]
Copying... [40%]
Copying... [50%]
Copying... [60%]
Copying... [70%]
Copying... [80%]
Copying... [90%]
Copying... [100%]
Done.