The Swift Package Index logo.Swift Package Index

Build Information

Successful build of html-to-markdown-swift, reference 0.9.0 (a200a4), with Swift 6.1 for Linux on 5 Mar 2026 04:46:43 UTC.

Swift 6 data race errors: 6

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4609320-1":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/finestructure/spi-images:basic-6.1-latest swift build --triple x86_64-unknown-linux-gnu -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures 2>&1

Build Log

   |                              `- warning: result of 'try?' is unused
23 |                 if let next = input.nextSibling() as? TextNode {
24 |                     let trimmed = next.text().replacingOccurrences(of: "^\\s+", with: "", options: .regularExpression)
/host/spi-builder-workspace/Sources/plugin/tasklist/tasklist.swift:25:21: warning: result of 'try?' is unused
23 |                 if let next = input.nextSibling() as? TextNode {
24 |                     let trimmed = next.text().replacingOccurrences(of: "^\\s+", with: "", options: .regularExpression)
25 |                     try? next.text(trimmed)
   |                     `- warning: result of 'try?' is unused
26 |                 }
27 |                 if let placeholder = placeholder {
/host/spi-builder-workspace/Sources/plugin/tasklist/tasklist.swift:25:21: warning: no calls to throwing functions occur within 'try' expression
23 |                 if let next = input.nextSibling() as? TextNode {
24 |                     let trimmed = next.text().replacingOccurrences(of: "^\\s+", with: "", options: .regularExpression)
25 |                     try? next.text(trimmed)
   |                     `- warning: no calls to throwing functions occur within 'try' expression
26 |                 }
27 |                 if let placeholder = placeholder {
/host/spi-builder-workspace/Sources/plugin/typography/typography.swift:18:23: warning: static property 'english' is not concurrency-safe because non-'Sendable' type 'QuoteStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import SwiftSoup
 3 |
 4 | public struct QuoteStyle {
   |               `- note: consider making struct 'QuoteStyle' conform to the 'Sendable' protocol
 5 |     public let openDouble: Character
 6 |     public let closeDouble: Character
   :
16 |     }
17 |
18 |     public static let english = QuoteStyle(openDouble: "\u{201C}", closeDouble: "\u{201D}",
   |                       |- warning: static property 'english' is not concurrency-safe because non-'Sendable' type 'QuoteStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'english' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 |                                            openSingle: "\u{2018}", closeSingle: "\u{2019}")
20 |     public static let german  = QuoteStyle(openDouble: "\u{201E}", closeDouble: "\u{201C}",
/host/spi-builder-workspace/Sources/plugin/typography/typography.swift:20:23: warning: static property 'german' is not concurrency-safe because non-'Sendable' type 'QuoteStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import SwiftSoup
 3 |
 4 | public struct QuoteStyle {
   |               `- note: consider making struct 'QuoteStyle' conform to the 'Sendable' protocol
 5 |     public let openDouble: Character
 6 |     public let closeDouble: Character
   :
18 |     public static let english = QuoteStyle(openDouble: "\u{201C}", closeDouble: "\u{201D}",
19 |                                            openSingle: "\u{2018}", closeSingle: "\u{2019}")
20 |     public static let german  = QuoteStyle(openDouble: "\u{201E}", closeDouble: "\u{201C}",
   |                       |- warning: static property 'german' is not concurrency-safe because non-'Sendable' type 'QuoteStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'german' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |                                            openSingle: "\u{201A}", closeSingle: "\u{2018}")
22 |     public static let french  = QuoteStyle(openDouble: "\u{00AB}", closeDouble: "\u{00BB}",
/host/spi-builder-workspace/Sources/plugin/typography/typography.swift:22:23: warning: static property 'french' is not concurrency-safe because non-'Sendable' type 'QuoteStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import SwiftSoup
 3 |
 4 | public struct QuoteStyle {
   |               `- note: consider making struct 'QuoteStyle' conform to the 'Sendable' protocol
 5 |     public let openDouble: Character
 6 |     public let closeDouble: Character
   :
20 |     public static let german  = QuoteStyle(openDouble: "\u{201E}", closeDouble: "\u{201C}",
21 |                                            openSingle: "\u{201A}", closeSingle: "\u{2018}")
22 |     public static let french  = QuoteStyle(openDouble: "\u{00AB}", closeDouble: "\u{00BB}",
   |                       |- warning: static property 'french' is not concurrency-safe because non-'Sendable' type 'QuoteStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'french' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |                                            openSingle: "\u{2039}", closeSingle: "\u{203A}")
24 |     public static let swedish = QuoteStyle(openDouble: "\u{201D}", closeDouble: "\u{201D}",
/host/spi-builder-workspace/Sources/plugin/typography/typography.swift:24:23: warning: static property 'swedish' is not concurrency-safe because non-'Sendable' type 'QuoteStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import SwiftSoup
 3 |
 4 | public struct QuoteStyle {
   |               `- note: consider making struct 'QuoteStyle' conform to the 'Sendable' protocol
 5 |     public let openDouble: Character
 6 |     public let closeDouble: Character
   :
22 |     public static let french  = QuoteStyle(openDouble: "\u{00AB}", closeDouble: "\u{00BB}",
23 |                                            openSingle: "\u{2039}", closeSingle: "\u{203A}")
24 |     public static let swedish = QuoteStyle(openDouble: "\u{201D}", closeDouble: "\u{201D}",
   |                       |- warning: static property 'swedish' is not concurrency-safe because non-'Sendable' type 'QuoteStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'swedish' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |                                            openSingle: "\u{2019}", closeSingle: "\u{2019}")
26 | }
[138/184] Compiling HTMLToMarkdown 3_render.swift
/host/spi-builder-workspace/Sources/plugin/tasklist/tasklist.swift:22:30: warning: result of 'try?' is unused
20 |                 let checked = input.hasAttr("checked")
21 |                 let placeholder = try? Element(Tag.valueOf("task-list-checkbox"), "")
22 |                 if checked { try? placeholder?.attr("checked", "") }
   |                              `- warning: result of 'try?' is unused
23 |                 if let next = input.nextSibling() as? TextNode {
24 |                     let trimmed = next.text().replacingOccurrences(of: "^\\s+", with: "", options: .regularExpression)
/host/spi-builder-workspace/Sources/plugin/tasklist/tasklist.swift:25:21: warning: result of 'try?' is unused
23 |                 if let next = input.nextSibling() as? TextNode {
24 |                     let trimmed = next.text().replacingOccurrences(of: "^\\s+", with: "", options: .regularExpression)
25 |                     try? next.text(trimmed)
   |                     `- warning: result of 'try?' is unused
26 |                 }
27 |                 if let placeholder = placeholder {
/host/spi-builder-workspace/Sources/plugin/tasklist/tasklist.swift:25:21: warning: no calls to throwing functions occur within 'try' expression
23 |                 if let next = input.nextSibling() as? TextNode {
24 |                     let trimmed = next.text().replacingOccurrences(of: "^\\s+", with: "", options: .regularExpression)
25 |                     try? next.text(trimmed)
   |                     `- warning: no calls to throwing functions occur within 'try' expression
26 |                 }
27 |                 if let placeholder = placeholder {
/host/spi-builder-workspace/Sources/plugin/typography/typography.swift:18:23: warning: static property 'english' is not concurrency-safe because non-'Sendable' type 'QuoteStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import SwiftSoup
 3 |
 4 | public struct QuoteStyle {
   |               `- note: consider making struct 'QuoteStyle' conform to the 'Sendable' protocol
 5 |     public let openDouble: Character
 6 |     public let closeDouble: Character
   :
16 |     }
17 |
18 |     public static let english = QuoteStyle(openDouble: "\u{201C}", closeDouble: "\u{201D}",
   |                       |- warning: static property 'english' is not concurrency-safe because non-'Sendable' type 'QuoteStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'english' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 |                                            openSingle: "\u{2018}", closeSingle: "\u{2019}")
20 |     public static let german  = QuoteStyle(openDouble: "\u{201E}", closeDouble: "\u{201C}",
/host/spi-builder-workspace/Sources/plugin/typography/typography.swift:20:23: warning: static property 'german' is not concurrency-safe because non-'Sendable' type 'QuoteStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import SwiftSoup
 3 |
 4 | public struct QuoteStyle {
   |               `- note: consider making struct 'QuoteStyle' conform to the 'Sendable' protocol
 5 |     public let openDouble: Character
 6 |     public let closeDouble: Character
   :
18 |     public static let english = QuoteStyle(openDouble: "\u{201C}", closeDouble: "\u{201D}",
19 |                                            openSingle: "\u{2018}", closeSingle: "\u{2019}")
20 |     public static let german  = QuoteStyle(openDouble: "\u{201E}", closeDouble: "\u{201C}",
   |                       |- warning: static property 'german' is not concurrency-safe because non-'Sendable' type 'QuoteStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'german' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |                                            openSingle: "\u{201A}", closeSingle: "\u{2018}")
22 |     public static let french  = QuoteStyle(openDouble: "\u{00AB}", closeDouble: "\u{00BB}",
/host/spi-builder-workspace/Sources/plugin/typography/typography.swift:22:23: warning: static property 'french' is not concurrency-safe because non-'Sendable' type 'QuoteStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import SwiftSoup
 3 |
 4 | public struct QuoteStyle {
   |               `- note: consider making struct 'QuoteStyle' conform to the 'Sendable' protocol
 5 |     public let openDouble: Character
 6 |     public let closeDouble: Character
   :
20 |     public static let german  = QuoteStyle(openDouble: "\u{201E}", closeDouble: "\u{201C}",
21 |                                            openSingle: "\u{201A}", closeSingle: "\u{2018}")
22 |     public static let french  = QuoteStyle(openDouble: "\u{00AB}", closeDouble: "\u{00BB}",
   |                       |- warning: static property 'french' is not concurrency-safe because non-'Sendable' type 'QuoteStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'french' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |                                            openSingle: "\u{2039}", closeSingle: "\u{203A}")
24 |     public static let swedish = QuoteStyle(openDouble: "\u{201D}", closeDouble: "\u{201D}",
/host/spi-builder-workspace/Sources/plugin/typography/typography.swift:24:23: warning: static property 'swedish' is not concurrency-safe because non-'Sendable' type 'QuoteStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import SwiftSoup
 3 |
 4 | public struct QuoteStyle {
   |               `- note: consider making struct 'QuoteStyle' conform to the 'Sendable' protocol
 5 |     public let openDouble: Character
 6 |     public let closeDouble: Character
   :
22 |     public static let french  = QuoteStyle(openDouble: "\u{00AB}", closeDouble: "\u{00BB}",
23 |                                            openSingle: "\u{2039}", closeSingle: "\u{203A}")
24 |     public static let swedish = QuoteStyle(openDouble: "\u{201D}", closeDouble: "\u{201D}",
   |                       |- warning: static property 'swedish' is not concurrency-safe because non-'Sendable' type 'QuoteStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'swedish' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |                                            openSingle: "\u{2019}", closeSingle: "\u{2019}")
26 | }
[139/184] Compiling HTMLToMarkdown table.swift
/host/spi-builder-workspace/Sources/plugin/tasklist/tasklist.swift:22:30: warning: result of 'try?' is unused
20 |                 let checked = input.hasAttr("checked")
21 |                 let placeholder = try? Element(Tag.valueOf("task-list-checkbox"), "")
22 |                 if checked { try? placeholder?.attr("checked", "") }
   |                              `- warning: result of 'try?' is unused
23 |                 if let next = input.nextSibling() as? TextNode {
24 |                     let trimmed = next.text().replacingOccurrences(of: "^\\s+", with: "", options: .regularExpression)
/host/spi-builder-workspace/Sources/plugin/tasklist/tasklist.swift:25:21: warning: result of 'try?' is unused
23 |                 if let next = input.nextSibling() as? TextNode {
24 |                     let trimmed = next.text().replacingOccurrences(of: "^\\s+", with: "", options: .regularExpression)
25 |                     try? next.text(trimmed)
   |                     `- warning: result of 'try?' is unused
26 |                 }
27 |                 if let placeholder = placeholder {
/host/spi-builder-workspace/Sources/plugin/tasklist/tasklist.swift:25:21: warning: no calls to throwing functions occur within 'try' expression
23 |                 if let next = input.nextSibling() as? TextNode {
24 |                     let trimmed = next.text().replacingOccurrences(of: "^\\s+", with: "", options: .regularExpression)
25 |                     try? next.text(trimmed)
   |                     `- warning: no calls to throwing functions occur within 'try' expression
26 |                 }
27 |                 if let placeholder = placeholder {
/host/spi-builder-workspace/Sources/plugin/typography/typography.swift:18:23: warning: static property 'english' is not concurrency-safe because non-'Sendable' type 'QuoteStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import SwiftSoup
 3 |
 4 | public struct QuoteStyle {
   |               `- note: consider making struct 'QuoteStyle' conform to the 'Sendable' protocol
 5 |     public let openDouble: Character
 6 |     public let closeDouble: Character
   :
16 |     }
17 |
18 |     public static let english = QuoteStyle(openDouble: "\u{201C}", closeDouble: "\u{201D}",
   |                       |- warning: static property 'english' is not concurrency-safe because non-'Sendable' type 'QuoteStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'english' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 |                                            openSingle: "\u{2018}", closeSingle: "\u{2019}")
20 |     public static let german  = QuoteStyle(openDouble: "\u{201E}", closeDouble: "\u{201C}",
/host/spi-builder-workspace/Sources/plugin/typography/typography.swift:20:23: warning: static property 'german' is not concurrency-safe because non-'Sendable' type 'QuoteStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import SwiftSoup
 3 |
 4 | public struct QuoteStyle {
   |               `- note: consider making struct 'QuoteStyle' conform to the 'Sendable' protocol
 5 |     public let openDouble: Character
 6 |     public let closeDouble: Character
   :
18 |     public static let english = QuoteStyle(openDouble: "\u{201C}", closeDouble: "\u{201D}",
19 |                                            openSingle: "\u{2018}", closeSingle: "\u{2019}")
20 |     public static let german  = QuoteStyle(openDouble: "\u{201E}", closeDouble: "\u{201C}",
   |                       |- warning: static property 'german' is not concurrency-safe because non-'Sendable' type 'QuoteStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'german' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |                                            openSingle: "\u{201A}", closeSingle: "\u{2018}")
22 |     public static let french  = QuoteStyle(openDouble: "\u{00AB}", closeDouble: "\u{00BB}",
/host/spi-builder-workspace/Sources/plugin/typography/typography.swift:22:23: warning: static property 'french' is not concurrency-safe because non-'Sendable' type 'QuoteStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import SwiftSoup
 3 |
 4 | public struct QuoteStyle {
   |               `- note: consider making struct 'QuoteStyle' conform to the 'Sendable' protocol
 5 |     public let openDouble: Character
 6 |     public let closeDouble: Character
   :
20 |     public static let german  = QuoteStyle(openDouble: "\u{201E}", closeDouble: "\u{201C}",
21 |                                            openSingle: "\u{201A}", closeSingle: "\u{2018}")
22 |     public static let french  = QuoteStyle(openDouble: "\u{00AB}", closeDouble: "\u{00BB}",
   |                       |- warning: static property 'french' is not concurrency-safe because non-'Sendable' type 'QuoteStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'french' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |                                            openSingle: "\u{2039}", closeSingle: "\u{203A}")
24 |     public static let swedish = QuoteStyle(openDouble: "\u{201D}", closeDouble: "\u{201D}",
/host/spi-builder-workspace/Sources/plugin/typography/typography.swift:24:23: warning: static property 'swedish' is not concurrency-safe because non-'Sendable' type 'QuoteStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import SwiftSoup
 3 |
 4 | public struct QuoteStyle {
   |               `- note: consider making struct 'QuoteStyle' conform to the 'Sendable' protocol
 5 |     public let openDouble: Character
 6 |     public let closeDouble: Character
   :
22 |     public static let french  = QuoteStyle(openDouble: "\u{00AB}", closeDouble: "\u{00BB}",
23 |                                            openSingle: "\u{2039}", closeSingle: "\u{203A}")
24 |     public static let swedish = QuoteStyle(openDouble: "\u{201D}", closeDouble: "\u{201D}",
   |                       |- warning: static property 'swedish' is not concurrency-safe because non-'Sendable' type 'QuoteStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'swedish' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |                                            openSingle: "\u{2019}", closeSingle: "\u{2019}")
26 | }
[140/184] Compiling HTMLToMarkdown utils.swift
/host/spi-builder-workspace/Sources/plugin/tasklist/tasklist.swift:22:30: warning: result of 'try?' is unused
20 |                 let checked = input.hasAttr("checked")
21 |                 let placeholder = try? Element(Tag.valueOf("task-list-checkbox"), "")
22 |                 if checked { try? placeholder?.attr("checked", "") }
   |                              `- warning: result of 'try?' is unused
23 |                 if let next = input.nextSibling() as? TextNode {
24 |                     let trimmed = next.text().replacingOccurrences(of: "^\\s+", with: "", options: .regularExpression)
/host/spi-builder-workspace/Sources/plugin/tasklist/tasklist.swift:25:21: warning: result of 'try?' is unused
23 |                 if let next = input.nextSibling() as? TextNode {
24 |                     let trimmed = next.text().replacingOccurrences(of: "^\\s+", with: "", options: .regularExpression)
25 |                     try? next.text(trimmed)
   |                     `- warning: result of 'try?' is unused
26 |                 }
27 |                 if let placeholder = placeholder {
/host/spi-builder-workspace/Sources/plugin/tasklist/tasklist.swift:25:21: warning: no calls to throwing functions occur within 'try' expression
23 |                 if let next = input.nextSibling() as? TextNode {
24 |                     let trimmed = next.text().replacingOccurrences(of: "^\\s+", with: "", options: .regularExpression)
25 |                     try? next.text(trimmed)
   |                     `- warning: no calls to throwing functions occur within 'try' expression
26 |                 }
27 |                 if let placeholder = placeholder {
/host/spi-builder-workspace/Sources/plugin/typography/typography.swift:18:23: warning: static property 'english' is not concurrency-safe because non-'Sendable' type 'QuoteStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import SwiftSoup
 3 |
 4 | public struct QuoteStyle {
   |               `- note: consider making struct 'QuoteStyle' conform to the 'Sendable' protocol
 5 |     public let openDouble: Character
 6 |     public let closeDouble: Character
   :
16 |     }
17 |
18 |     public static let english = QuoteStyle(openDouble: "\u{201C}", closeDouble: "\u{201D}",
   |                       |- warning: static property 'english' is not concurrency-safe because non-'Sendable' type 'QuoteStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'english' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 |                                            openSingle: "\u{2018}", closeSingle: "\u{2019}")
20 |     public static let german  = QuoteStyle(openDouble: "\u{201E}", closeDouble: "\u{201C}",
/host/spi-builder-workspace/Sources/plugin/typography/typography.swift:20:23: warning: static property 'german' is not concurrency-safe because non-'Sendable' type 'QuoteStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import SwiftSoup
 3 |
 4 | public struct QuoteStyle {
   |               `- note: consider making struct 'QuoteStyle' conform to the 'Sendable' protocol
 5 |     public let openDouble: Character
 6 |     public let closeDouble: Character
   :
18 |     public static let english = QuoteStyle(openDouble: "\u{201C}", closeDouble: "\u{201D}",
19 |                                            openSingle: "\u{2018}", closeSingle: "\u{2019}")
20 |     public static let german  = QuoteStyle(openDouble: "\u{201E}", closeDouble: "\u{201C}",
   |                       |- warning: static property 'german' is not concurrency-safe because non-'Sendable' type 'QuoteStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'german' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |                                            openSingle: "\u{201A}", closeSingle: "\u{2018}")
22 |     public static let french  = QuoteStyle(openDouble: "\u{00AB}", closeDouble: "\u{00BB}",
/host/spi-builder-workspace/Sources/plugin/typography/typography.swift:22:23: warning: static property 'french' is not concurrency-safe because non-'Sendable' type 'QuoteStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import SwiftSoup
 3 |
 4 | public struct QuoteStyle {
   |               `- note: consider making struct 'QuoteStyle' conform to the 'Sendable' protocol
 5 |     public let openDouble: Character
 6 |     public let closeDouble: Character
   :
20 |     public static let german  = QuoteStyle(openDouble: "\u{201E}", closeDouble: "\u{201C}",
21 |                                            openSingle: "\u{201A}", closeSingle: "\u{2018}")
22 |     public static let french  = QuoteStyle(openDouble: "\u{00AB}", closeDouble: "\u{00BB}",
   |                       |- warning: static property 'french' is not concurrency-safe because non-'Sendable' type 'QuoteStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'french' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |                                            openSingle: "\u{2039}", closeSingle: "\u{203A}")
24 |     public static let swedish = QuoteStyle(openDouble: "\u{201D}", closeDouble: "\u{201D}",
/host/spi-builder-workspace/Sources/plugin/typography/typography.swift:24:23: warning: static property 'swedish' is not concurrency-safe because non-'Sendable' type 'QuoteStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import SwiftSoup
 3 |
 4 | public struct QuoteStyle {
   |               `- note: consider making struct 'QuoteStyle' conform to the 'Sendable' protocol
 5 |     public let openDouble: Character
 6 |     public let closeDouble: Character
   :
22 |     public static let french  = QuoteStyle(openDouble: "\u{00AB}", closeDouble: "\u{00BB}",
23 |                                            openSingle: "\u{2039}", closeSingle: "\u{203A}")
24 |     public static let swedish = QuoteStyle(openDouble: "\u{201D}", closeDouble: "\u{201D}",
   |                       |- warning: static property 'swedish' is not concurrency-safe because non-'Sendable' type 'QuoteStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'swedish' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |                                            openSingle: "\u{2019}", closeSingle: "\u{2019}")
26 | }
[141/184] Compiling HTMLToMarkdown tasklist.swift
/host/spi-builder-workspace/Sources/plugin/tasklist/tasklist.swift:22:30: warning: result of 'try?' is unused
20 |                 let checked = input.hasAttr("checked")
21 |                 let placeholder = try? Element(Tag.valueOf("task-list-checkbox"), "")
22 |                 if checked { try? placeholder?.attr("checked", "") }
   |                              `- warning: result of 'try?' is unused
23 |                 if let next = input.nextSibling() as? TextNode {
24 |                     let trimmed = next.text().replacingOccurrences(of: "^\\s+", with: "", options: .regularExpression)
/host/spi-builder-workspace/Sources/plugin/tasklist/tasklist.swift:25:21: warning: result of 'try?' is unused
23 |                 if let next = input.nextSibling() as? TextNode {
24 |                     let trimmed = next.text().replacingOccurrences(of: "^\\s+", with: "", options: .regularExpression)
25 |                     try? next.text(trimmed)
   |                     `- warning: result of 'try?' is unused
26 |                 }
27 |                 if let placeholder = placeholder {
/host/spi-builder-workspace/Sources/plugin/tasklist/tasklist.swift:25:21: warning: no calls to throwing functions occur within 'try' expression
23 |                 if let next = input.nextSibling() as? TextNode {
24 |                     let trimmed = next.text().replacingOccurrences(of: "^\\s+", with: "", options: .regularExpression)
25 |                     try? next.text(trimmed)
   |                     `- warning: no calls to throwing functions occur within 'try' expression
26 |                 }
27 |                 if let placeholder = placeholder {
/host/spi-builder-workspace/Sources/plugin/typography/typography.swift:18:23: warning: static property 'english' is not concurrency-safe because non-'Sendable' type 'QuoteStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import SwiftSoup
 3 |
 4 | public struct QuoteStyle {
   |               `- note: consider making struct 'QuoteStyle' conform to the 'Sendable' protocol
 5 |     public let openDouble: Character
 6 |     public let closeDouble: Character
   :
16 |     }
17 |
18 |     public static let english = QuoteStyle(openDouble: "\u{201C}", closeDouble: "\u{201D}",
   |                       |- warning: static property 'english' is not concurrency-safe because non-'Sendable' type 'QuoteStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'english' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 |                                            openSingle: "\u{2018}", closeSingle: "\u{2019}")
20 |     public static let german  = QuoteStyle(openDouble: "\u{201E}", closeDouble: "\u{201C}",
/host/spi-builder-workspace/Sources/plugin/typography/typography.swift:20:23: warning: static property 'german' is not concurrency-safe because non-'Sendable' type 'QuoteStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import SwiftSoup
 3 |
 4 | public struct QuoteStyle {
   |               `- note: consider making struct 'QuoteStyle' conform to the 'Sendable' protocol
 5 |     public let openDouble: Character
 6 |     public let closeDouble: Character
   :
18 |     public static let english = QuoteStyle(openDouble: "\u{201C}", closeDouble: "\u{201D}",
19 |                                            openSingle: "\u{2018}", closeSingle: "\u{2019}")
20 |     public static let german  = QuoteStyle(openDouble: "\u{201E}", closeDouble: "\u{201C}",
   |                       |- warning: static property 'german' is not concurrency-safe because non-'Sendable' type 'QuoteStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'german' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |                                            openSingle: "\u{201A}", closeSingle: "\u{2018}")
22 |     public static let french  = QuoteStyle(openDouble: "\u{00AB}", closeDouble: "\u{00BB}",
/host/spi-builder-workspace/Sources/plugin/typography/typography.swift:22:23: warning: static property 'french' is not concurrency-safe because non-'Sendable' type 'QuoteStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import SwiftSoup
 3 |
 4 | public struct QuoteStyle {
   |               `- note: consider making struct 'QuoteStyle' conform to the 'Sendable' protocol
 5 |     public let openDouble: Character
 6 |     public let closeDouble: Character
   :
20 |     public static let german  = QuoteStyle(openDouble: "\u{201E}", closeDouble: "\u{201C}",
21 |                                            openSingle: "\u{201A}", closeSingle: "\u{2018}")
22 |     public static let french  = QuoteStyle(openDouble: "\u{00AB}", closeDouble: "\u{00BB}",
   |                       |- warning: static property 'french' is not concurrency-safe because non-'Sendable' type 'QuoteStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'french' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |                                            openSingle: "\u{2039}", closeSingle: "\u{203A}")
24 |     public static let swedish = QuoteStyle(openDouble: "\u{201D}", closeDouble: "\u{201D}",
/host/spi-builder-workspace/Sources/plugin/typography/typography.swift:24:23: warning: static property 'swedish' is not concurrency-safe because non-'Sendable' type 'QuoteStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import SwiftSoup
 3 |
 4 | public struct QuoteStyle {
   |               `- note: consider making struct 'QuoteStyle' conform to the 'Sendable' protocol
 5 |     public let openDouble: Character
 6 |     public let closeDouble: Character
   :
22 |     public static let french  = QuoteStyle(openDouble: "\u{00AB}", closeDouble: "\u{00BB}",
23 |                                            openSingle: "\u{2039}", closeSingle: "\u{203A}")
24 |     public static let swedish = QuoteStyle(openDouble: "\u{201D}", closeDouble: "\u{201D}",
   |                       |- warning: static property 'swedish' is not concurrency-safe because non-'Sendable' type 'QuoteStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'swedish' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |                                            openSingle: "\u{2019}", closeSingle: "\u{2019}")
26 | }
[142/184] Compiling HTMLToMarkdown typography.swift
/host/spi-builder-workspace/Sources/plugin/tasklist/tasklist.swift:22:30: warning: result of 'try?' is unused
20 |                 let checked = input.hasAttr("checked")
21 |                 let placeholder = try? Element(Tag.valueOf("task-list-checkbox"), "")
22 |                 if checked { try? placeholder?.attr("checked", "") }
   |                              `- warning: result of 'try?' is unused
23 |                 if let next = input.nextSibling() as? TextNode {
24 |                     let trimmed = next.text().replacingOccurrences(of: "^\\s+", with: "", options: .regularExpression)
/host/spi-builder-workspace/Sources/plugin/tasklist/tasklist.swift:25:21: warning: result of 'try?' is unused
23 |                 if let next = input.nextSibling() as? TextNode {
24 |                     let trimmed = next.text().replacingOccurrences(of: "^\\s+", with: "", options: .regularExpression)
25 |                     try? next.text(trimmed)
   |                     `- warning: result of 'try?' is unused
26 |                 }
27 |                 if let placeholder = placeholder {
/host/spi-builder-workspace/Sources/plugin/tasklist/tasklist.swift:25:21: warning: no calls to throwing functions occur within 'try' expression
23 |                 if let next = input.nextSibling() as? TextNode {
24 |                     let trimmed = next.text().replacingOccurrences(of: "^\\s+", with: "", options: .regularExpression)
25 |                     try? next.text(trimmed)
   |                     `- warning: no calls to throwing functions occur within 'try' expression
26 |                 }
27 |                 if let placeholder = placeholder {
/host/spi-builder-workspace/Sources/plugin/typography/typography.swift:18:23: warning: static property 'english' is not concurrency-safe because non-'Sendable' type 'QuoteStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import SwiftSoup
 3 |
 4 | public struct QuoteStyle {
   |               `- note: consider making struct 'QuoteStyle' conform to the 'Sendable' protocol
 5 |     public let openDouble: Character
 6 |     public let closeDouble: Character
   :
16 |     }
17 |
18 |     public static let english = QuoteStyle(openDouble: "\u{201C}", closeDouble: "\u{201D}",
   |                       |- warning: static property 'english' is not concurrency-safe because non-'Sendable' type 'QuoteStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'english' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 |                                            openSingle: "\u{2018}", closeSingle: "\u{2019}")
20 |     public static let german  = QuoteStyle(openDouble: "\u{201E}", closeDouble: "\u{201C}",
/host/spi-builder-workspace/Sources/plugin/typography/typography.swift:20:23: warning: static property 'german' is not concurrency-safe because non-'Sendable' type 'QuoteStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import SwiftSoup
 3 |
 4 | public struct QuoteStyle {
   |               `- note: consider making struct 'QuoteStyle' conform to the 'Sendable' protocol
 5 |     public let openDouble: Character
 6 |     public let closeDouble: Character
   :
18 |     public static let english = QuoteStyle(openDouble: "\u{201C}", closeDouble: "\u{201D}",
19 |                                            openSingle: "\u{2018}", closeSingle: "\u{2019}")
20 |     public static let german  = QuoteStyle(openDouble: "\u{201E}", closeDouble: "\u{201C}",
   |                       |- warning: static property 'german' is not concurrency-safe because non-'Sendable' type 'QuoteStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'german' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |                                            openSingle: "\u{201A}", closeSingle: "\u{2018}")
22 |     public static let french  = QuoteStyle(openDouble: "\u{00AB}", closeDouble: "\u{00BB}",
/host/spi-builder-workspace/Sources/plugin/typography/typography.swift:22:23: warning: static property 'french' is not concurrency-safe because non-'Sendable' type 'QuoteStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import SwiftSoup
 3 |
 4 | public struct QuoteStyle {
   |               `- note: consider making struct 'QuoteStyle' conform to the 'Sendable' protocol
 5 |     public let openDouble: Character
 6 |     public let closeDouble: Character
   :
20 |     public static let german  = QuoteStyle(openDouble: "\u{201E}", closeDouble: "\u{201C}",
21 |                                            openSingle: "\u{201A}", closeSingle: "\u{2018}")
22 |     public static let french  = QuoteStyle(openDouble: "\u{00AB}", closeDouble: "\u{00BB}",
   |                       |- warning: static property 'french' is not concurrency-safe because non-'Sendable' type 'QuoteStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'french' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |                                            openSingle: "\u{2039}", closeSingle: "\u{203A}")
24 |     public static let swedish = QuoteStyle(openDouble: "\u{201D}", closeDouble: "\u{201D}",
/host/spi-builder-workspace/Sources/plugin/typography/typography.swift:24:23: warning: static property 'swedish' is not concurrency-safe because non-'Sendable' type 'QuoteStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import SwiftSoup
 3 |
 4 | public struct QuoteStyle {
   |               `- note: consider making struct 'QuoteStyle' conform to the 'Sendable' protocol
 5 |     public let openDouble: Character
 6 |     public let closeDouble: Character
   :
22 |     public static let french  = QuoteStyle(openDouble: "\u{00AB}", closeDouble: "\u{00BB}",
23 |                                            openSingle: "\u{2039}", closeSingle: "\u{203A}")
24 |     public static let swedish = QuoteStyle(openDouble: "\u{201D}", closeDouble: "\u{201D}",
   |                       |- warning: static property 'swedish' is not concurrency-safe because non-'Sendable' type 'QuoteStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'swedish' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |                                            openSingle: "\u{2019}", closeSingle: "\u{2019}")
26 | }
[143/184] Compiling HTMLToMarkdown typography_linkify.swift
/host/spi-builder-workspace/Sources/plugin/tasklist/tasklist.swift:22:30: warning: result of 'try?' is unused
20 |                 let checked = input.hasAttr("checked")
21 |                 let placeholder = try? Element(Tag.valueOf("task-list-checkbox"), "")
22 |                 if checked { try? placeholder?.attr("checked", "") }
   |                              `- warning: result of 'try?' is unused
23 |                 if let next = input.nextSibling() as? TextNode {
24 |                     let trimmed = next.text().replacingOccurrences(of: "^\\s+", with: "", options: .regularExpression)
/host/spi-builder-workspace/Sources/plugin/tasklist/tasklist.swift:25:21: warning: result of 'try?' is unused
23 |                 if let next = input.nextSibling() as? TextNode {
24 |                     let trimmed = next.text().replacingOccurrences(of: "^\\s+", with: "", options: .regularExpression)
25 |                     try? next.text(trimmed)
   |                     `- warning: result of 'try?' is unused
26 |                 }
27 |                 if let placeholder = placeholder {
/host/spi-builder-workspace/Sources/plugin/tasklist/tasklist.swift:25:21: warning: no calls to throwing functions occur within 'try' expression
23 |                 if let next = input.nextSibling() as? TextNode {
24 |                     let trimmed = next.text().replacingOccurrences(of: "^\\s+", with: "", options: .regularExpression)
25 |                     try? next.text(trimmed)
   |                     `- warning: no calls to throwing functions occur within 'try' expression
26 |                 }
27 |                 if let placeholder = placeholder {
/host/spi-builder-workspace/Sources/plugin/typography/typography.swift:18:23: warning: static property 'english' is not concurrency-safe because non-'Sendable' type 'QuoteStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import SwiftSoup
 3 |
 4 | public struct QuoteStyle {
   |               `- note: consider making struct 'QuoteStyle' conform to the 'Sendable' protocol
 5 |     public let openDouble: Character
 6 |     public let closeDouble: Character
   :
16 |     }
17 |
18 |     public static let english = QuoteStyle(openDouble: "\u{201C}", closeDouble: "\u{201D}",
   |                       |- warning: static property 'english' is not concurrency-safe because non-'Sendable' type 'QuoteStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'english' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 |                                            openSingle: "\u{2018}", closeSingle: "\u{2019}")
20 |     public static let german  = QuoteStyle(openDouble: "\u{201E}", closeDouble: "\u{201C}",
/host/spi-builder-workspace/Sources/plugin/typography/typography.swift:20:23: warning: static property 'german' is not concurrency-safe because non-'Sendable' type 'QuoteStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import SwiftSoup
 3 |
 4 | public struct QuoteStyle {
   |               `- note: consider making struct 'QuoteStyle' conform to the 'Sendable' protocol
 5 |     public let openDouble: Character
 6 |     public let closeDouble: Character
   :
18 |     public static let english = QuoteStyle(openDouble: "\u{201C}", closeDouble: "\u{201D}",
19 |                                            openSingle: "\u{2018}", closeSingle: "\u{2019}")
20 |     public static let german  = QuoteStyle(openDouble: "\u{201E}", closeDouble: "\u{201C}",
   |                       |- warning: static property 'german' is not concurrency-safe because non-'Sendable' type 'QuoteStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'german' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |                                            openSingle: "\u{201A}", closeSingle: "\u{2018}")
22 |     public static let french  = QuoteStyle(openDouble: "\u{00AB}", closeDouble: "\u{00BB}",
/host/spi-builder-workspace/Sources/plugin/typography/typography.swift:22:23: warning: static property 'french' is not concurrency-safe because non-'Sendable' type 'QuoteStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import SwiftSoup
 3 |
 4 | public struct QuoteStyle {
   |               `- note: consider making struct 'QuoteStyle' conform to the 'Sendable' protocol
 5 |     public let openDouble: Character
 6 |     public let closeDouble: Character
   :
20 |     public static let german  = QuoteStyle(openDouble: "\u{201E}", closeDouble: "\u{201C}",
21 |                                            openSingle: "\u{201A}", closeSingle: "\u{2018}")
22 |     public static let french  = QuoteStyle(openDouble: "\u{00AB}", closeDouble: "\u{00BB}",
   |                       |- warning: static property 'french' is not concurrency-safe because non-'Sendable' type 'QuoteStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'french' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |                                            openSingle: "\u{2039}", closeSingle: "\u{203A}")
24 |     public static let swedish = QuoteStyle(openDouble: "\u{201D}", closeDouble: "\u{201D}",
/host/spi-builder-workspace/Sources/plugin/typography/typography.swift:24:23: warning: static property 'swedish' is not concurrency-safe because non-'Sendable' type 'QuoteStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import SwiftSoup
 3 |
 4 | public struct QuoteStyle {
   |               `- note: consider making struct 'QuoteStyle' conform to the 'Sendable' protocol
 5 |     public let openDouble: Character
 6 |     public let closeDouble: Character
   :
22 |     public static let french  = QuoteStyle(openDouble: "\u{00AB}", closeDouble: "\u{00BB}",
23 |                                            openSingle: "\u{2039}", closeSingle: "\u{203A}")
24 |     public static let swedish = QuoteStyle(openDouble: "\u{201D}", closeDouble: "\u{201D}",
   |                       |- warning: static property 'swedish' is not concurrency-safe because non-'Sendable' type 'QuoteStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'swedish' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |                                            openSingle: "\u{2019}", closeSingle: "\u{2019}")
26 | }
[144/184] Compiling HTMLToMarkdown typography_replacements.swift
/host/spi-builder-workspace/Sources/plugin/tasklist/tasklist.swift:22:30: warning: result of 'try?' is unused
20 |                 let checked = input.hasAttr("checked")
21 |                 let placeholder = try? Element(Tag.valueOf("task-list-checkbox"), "")
22 |                 if checked { try? placeholder?.attr("checked", "") }
   |                              `- warning: result of 'try?' is unused
23 |                 if let next = input.nextSibling() as? TextNode {
24 |                     let trimmed = next.text().replacingOccurrences(of: "^\\s+", with: "", options: .regularExpression)
/host/spi-builder-workspace/Sources/plugin/tasklist/tasklist.swift:25:21: warning: result of 'try?' is unused
23 |                 if let next = input.nextSibling() as? TextNode {
24 |                     let trimmed = next.text().replacingOccurrences(of: "^\\s+", with: "", options: .regularExpression)
25 |                     try? next.text(trimmed)
   |                     `- warning: result of 'try?' is unused
26 |                 }
27 |                 if let placeholder = placeholder {
/host/spi-builder-workspace/Sources/plugin/tasklist/tasklist.swift:25:21: warning: no calls to throwing functions occur within 'try' expression
23 |                 if let next = input.nextSibling() as? TextNode {
24 |                     let trimmed = next.text().replacingOccurrences(of: "^\\s+", with: "", options: .regularExpression)
25 |                     try? next.text(trimmed)
   |                     `- warning: no calls to throwing functions occur within 'try' expression
26 |                 }
27 |                 if let placeholder = placeholder {
/host/spi-builder-workspace/Sources/plugin/typography/typography.swift:18:23: warning: static property 'english' is not concurrency-safe because non-'Sendable' type 'QuoteStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import SwiftSoup
 3 |
 4 | public struct QuoteStyle {
   |               `- note: consider making struct 'QuoteStyle' conform to the 'Sendable' protocol
 5 |     public let openDouble: Character
 6 |     public let closeDouble: Character
   :
16 |     }
17 |
18 |     public static let english = QuoteStyle(openDouble: "\u{201C}", closeDouble: "\u{201D}",
   |                       |- warning: static property 'english' is not concurrency-safe because non-'Sendable' type 'QuoteStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'english' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 |                                            openSingle: "\u{2018}", closeSingle: "\u{2019}")
20 |     public static let german  = QuoteStyle(openDouble: "\u{201E}", closeDouble: "\u{201C}",
/host/spi-builder-workspace/Sources/plugin/typography/typography.swift:20:23: warning: static property 'german' is not concurrency-safe because non-'Sendable' type 'QuoteStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import SwiftSoup
 3 |
 4 | public struct QuoteStyle {
   |               `- note: consider making struct 'QuoteStyle' conform to the 'Sendable' protocol
 5 |     public let openDouble: Character
 6 |     public let closeDouble: Character
   :
18 |     public static let english = QuoteStyle(openDouble: "\u{201C}", closeDouble: "\u{201D}",
19 |                                            openSingle: "\u{2018}", closeSingle: "\u{2019}")
20 |     public static let german  = QuoteStyle(openDouble: "\u{201E}", closeDouble: "\u{201C}",
   |                       |- warning: static property 'german' is not concurrency-safe because non-'Sendable' type 'QuoteStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'german' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |                                            openSingle: "\u{201A}", closeSingle: "\u{2018}")
22 |     public static let french  = QuoteStyle(openDouble: "\u{00AB}", closeDouble: "\u{00BB}",
/host/spi-builder-workspace/Sources/plugin/typography/typography.swift:22:23: warning: static property 'french' is not concurrency-safe because non-'Sendable' type 'QuoteStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import SwiftSoup
 3 |
 4 | public struct QuoteStyle {
   |               `- note: consider making struct 'QuoteStyle' conform to the 'Sendable' protocol
 5 |     public let openDouble: Character
 6 |     public let closeDouble: Character
   :
20 |     public static let german  = QuoteStyle(openDouble: "\u{201E}", closeDouble: "\u{201C}",
21 |                                            openSingle: "\u{201A}", closeSingle: "\u{2018}")
22 |     public static let french  = QuoteStyle(openDouble: "\u{00AB}", closeDouble: "\u{00BB}",
   |                       |- warning: static property 'french' is not concurrency-safe because non-'Sendable' type 'QuoteStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'french' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |                                            openSingle: "\u{2039}", closeSingle: "\u{203A}")
24 |     public static let swedish = QuoteStyle(openDouble: "\u{201D}", closeDouble: "\u{201D}",
/host/spi-builder-workspace/Sources/plugin/typography/typography.swift:24:23: warning: static property 'swedish' is not concurrency-safe because non-'Sendable' type 'QuoteStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import SwiftSoup
 3 |
 4 | public struct QuoteStyle {
   |               `- note: consider making struct 'QuoteStyle' conform to the 'Sendable' protocol
 5 |     public let openDouble: Character
 6 |     public let closeDouble: Character
   :
22 |     public static let french  = QuoteStyle(openDouble: "\u{00AB}", closeDouble: "\u{00BB}",
23 |                                            openSingle: "\u{2039}", closeSingle: "\u{203A}")
24 |     public static let swedish = QuoteStyle(openDouble: "\u{201D}", closeDouble: "\u{201D}",
   |                       |- warning: static property 'swedish' is not concurrency-safe because non-'Sendable' type 'QuoteStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'swedish' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |                                            openSingle: "\u{2019}", closeSingle: "\u{2019}")
26 | }
[145/184] Compiling HTMLToMarkdown typography_smart_quotes.swift
/host/spi-builder-workspace/Sources/plugin/tasklist/tasklist.swift:22:30: warning: result of 'try?' is unused
20 |                 let checked = input.hasAttr("checked")
21 |                 let placeholder = try? Element(Tag.valueOf("task-list-checkbox"), "")
22 |                 if checked { try? placeholder?.attr("checked", "") }
   |                              `- warning: result of 'try?' is unused
23 |                 if let next = input.nextSibling() as? TextNode {
24 |                     let trimmed = next.text().replacingOccurrences(of: "^\\s+", with: "", options: .regularExpression)
/host/spi-builder-workspace/Sources/plugin/tasklist/tasklist.swift:25:21: warning: result of 'try?' is unused
23 |                 if let next = input.nextSibling() as? TextNode {
24 |                     let trimmed = next.text().replacingOccurrences(of: "^\\s+", with: "", options: .regularExpression)
25 |                     try? next.text(trimmed)
   |                     `- warning: result of 'try?' is unused
26 |                 }
27 |                 if let placeholder = placeholder {
/host/spi-builder-workspace/Sources/plugin/tasklist/tasklist.swift:25:21: warning: no calls to throwing functions occur within 'try' expression
23 |                 if let next = input.nextSibling() as? TextNode {
24 |                     let trimmed = next.text().replacingOccurrences(of: "^\\s+", with: "", options: .regularExpression)
25 |                     try? next.text(trimmed)
   |                     `- warning: no calls to throwing functions occur within 'try' expression
26 |                 }
27 |                 if let placeholder = placeholder {
/host/spi-builder-workspace/Sources/plugin/typography/typography.swift:18:23: warning: static property 'english' is not concurrency-safe because non-'Sendable' type 'QuoteStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import SwiftSoup
 3 |
 4 | public struct QuoteStyle {
   |               `- note: consider making struct 'QuoteStyle' conform to the 'Sendable' protocol
 5 |     public let openDouble: Character
 6 |     public let closeDouble: Character
   :
16 |     }
17 |
18 |     public static let english = QuoteStyle(openDouble: "\u{201C}", closeDouble: "\u{201D}",
   |                       |- warning: static property 'english' is not concurrency-safe because non-'Sendable' type 'QuoteStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'english' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 |                                            openSingle: "\u{2018}", closeSingle: "\u{2019}")
20 |     public static let german  = QuoteStyle(openDouble: "\u{201E}", closeDouble: "\u{201C}",
/host/spi-builder-workspace/Sources/plugin/typography/typography.swift:20:23: warning: static property 'german' is not concurrency-safe because non-'Sendable' type 'QuoteStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import SwiftSoup
 3 |
 4 | public struct QuoteStyle {
   |               `- note: consider making struct 'QuoteStyle' conform to the 'Sendable' protocol
 5 |     public let openDouble: Character
 6 |     public let closeDouble: Character
   :
18 |     public static let english = QuoteStyle(openDouble: "\u{201C}", closeDouble: "\u{201D}",
19 |                                            openSingle: "\u{2018}", closeSingle: "\u{2019}")
20 |     public static let german  = QuoteStyle(openDouble: "\u{201E}", closeDouble: "\u{201C}",
   |                       |- warning: static property 'german' is not concurrency-safe because non-'Sendable' type 'QuoteStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'german' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |                                            openSingle: "\u{201A}", closeSingle: "\u{2018}")
22 |     public static let french  = QuoteStyle(openDouble: "\u{00AB}", closeDouble: "\u{00BB}",
/host/spi-builder-workspace/Sources/plugin/typography/typography.swift:22:23: warning: static property 'french' is not concurrency-safe because non-'Sendable' type 'QuoteStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import SwiftSoup
 3 |
 4 | public struct QuoteStyle {
   |               `- note: consider making struct 'QuoteStyle' conform to the 'Sendable' protocol
 5 |     public let openDouble: Character
 6 |     public let closeDouble: Character
   :
20 |     public static let german  = QuoteStyle(openDouble: "\u{201E}", closeDouble: "\u{201C}",
21 |                                            openSingle: "\u{201A}", closeSingle: "\u{2018}")
22 |     public static let french  = QuoteStyle(openDouble: "\u{00AB}", closeDouble: "\u{00BB}",
   |                       |- warning: static property 'french' is not concurrency-safe because non-'Sendable' type 'QuoteStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'french' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |                                            openSingle: "\u{2039}", closeSingle: "\u{203A}")
24 |     public static let swedish = QuoteStyle(openDouble: "\u{201D}", closeDouble: "\u{201D}",
/host/spi-builder-workspace/Sources/plugin/typography/typography.swift:24:23: warning: static property 'swedish' is not concurrency-safe because non-'Sendable' type 'QuoteStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import SwiftSoup
 3 |
 4 | public struct QuoteStyle {
   |               `- note: consider making struct 'QuoteStyle' conform to the 'Sendable' protocol
 5 |     public let openDouble: Character
 6 |     public let closeDouble: Character
   :
22 |     public static let french  = QuoteStyle(openDouble: "\u{00AB}", closeDouble: "\u{00BB}",
23 |                                            openSingle: "\u{2039}", closeSingle: "\u{203A}")
24 |     public static let swedish = QuoteStyle(openDouble: "\u{201D}", closeDouble: "\u{201D}",
   |                       |- warning: static property 'swedish' is not concurrency-safe because non-'Sendable' type 'QuoteStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'swedish' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |                                            openSingle: "\u{2019}", closeSingle: "\u{2019}")
26 | }
[146/184] Compiling HTMLToMarkdown typography_utils.swift
/host/spi-builder-workspace/Sources/plugin/tasklist/tasklist.swift:22:30: warning: result of 'try?' is unused
20 |                 let checked = input.hasAttr("checked")
21 |                 let placeholder = try? Element(Tag.valueOf("task-list-checkbox"), "")
22 |                 if checked { try? placeholder?.attr("checked", "") }
   |                              `- warning: result of 'try?' is unused
23 |                 if let next = input.nextSibling() as? TextNode {
24 |                     let trimmed = next.text().replacingOccurrences(of: "^\\s+", with: "", options: .regularExpression)
/host/spi-builder-workspace/Sources/plugin/tasklist/tasklist.swift:25:21: warning: result of 'try?' is unused
23 |                 if let next = input.nextSibling() as? TextNode {
24 |                     let trimmed = next.text().replacingOccurrences(of: "^\\s+", with: "", options: .regularExpression)
25 |                     try? next.text(trimmed)
   |                     `- warning: result of 'try?' is unused
26 |                 }
27 |                 if let placeholder = placeholder {
/host/spi-builder-workspace/Sources/plugin/tasklist/tasklist.swift:25:21: warning: no calls to throwing functions occur within 'try' expression
23 |                 if let next = input.nextSibling() as? TextNode {
24 |                     let trimmed = next.text().replacingOccurrences(of: "^\\s+", with: "", options: .regularExpression)
25 |                     try? next.text(trimmed)
   |                     `- warning: no calls to throwing functions occur within 'try' expression
26 |                 }
27 |                 if let placeholder = placeholder {
/host/spi-builder-workspace/Sources/plugin/typography/typography.swift:18:23: warning: static property 'english' is not concurrency-safe because non-'Sendable' type 'QuoteStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import SwiftSoup
 3 |
 4 | public struct QuoteStyle {
   |               `- note: consider making struct 'QuoteStyle' conform to the 'Sendable' protocol
 5 |     public let openDouble: Character
 6 |     public let closeDouble: Character
   :
16 |     }
17 |
18 |     public static let english = QuoteStyle(openDouble: "\u{201C}", closeDouble: "\u{201D}",
   |                       |- warning: static property 'english' is not concurrency-safe because non-'Sendable' type 'QuoteStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'english' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 |                                            openSingle: "\u{2018}", closeSingle: "\u{2019}")
20 |     public static let german  = QuoteStyle(openDouble: "\u{201E}", closeDouble: "\u{201C}",
/host/spi-builder-workspace/Sources/plugin/typography/typography.swift:20:23: warning: static property 'german' is not concurrency-safe because non-'Sendable' type 'QuoteStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import SwiftSoup
 3 |
 4 | public struct QuoteStyle {
   |               `- note: consider making struct 'QuoteStyle' conform to the 'Sendable' protocol
 5 |     public let openDouble: Character
 6 |     public let closeDouble: Character
   :
18 |     public static let english = QuoteStyle(openDouble: "\u{201C}", closeDouble: "\u{201D}",
19 |                                            openSingle: "\u{2018}", closeSingle: "\u{2019}")
20 |     public static let german  = QuoteStyle(openDouble: "\u{201E}", closeDouble: "\u{201C}",
   |                       |- warning: static property 'german' is not concurrency-safe because non-'Sendable' type 'QuoteStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'german' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |                                            openSingle: "\u{201A}", closeSingle: "\u{2018}")
22 |     public static let french  = QuoteStyle(openDouble: "\u{00AB}", closeDouble: "\u{00BB}",
/host/spi-builder-workspace/Sources/plugin/typography/typography.swift:22:23: warning: static property 'french' is not concurrency-safe because non-'Sendable' type 'QuoteStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import SwiftSoup
 3 |
 4 | public struct QuoteStyle {
   |               `- note: consider making struct 'QuoteStyle' conform to the 'Sendable' protocol
 5 |     public let openDouble: Character
 6 |     public let closeDouble: Character
   :
20 |     public static let german  = QuoteStyle(openDouble: "\u{201E}", closeDouble: "\u{201C}",
21 |                                            openSingle: "\u{201A}", closeSingle: "\u{2018}")
22 |     public static let french  = QuoteStyle(openDouble: "\u{00AB}", closeDouble: "\u{00BB}",
   |                       |- warning: static property 'french' is not concurrency-safe because non-'Sendable' type 'QuoteStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'french' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |                                            openSingle: "\u{2039}", closeSingle: "\u{203A}")
24 |     public static let swedish = QuoteStyle(openDouble: "\u{201D}", closeDouble: "\u{201D}",
/host/spi-builder-workspace/Sources/plugin/typography/typography.swift:24:23: warning: static property 'swedish' is not concurrency-safe because non-'Sendable' type 'QuoteStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import SwiftSoup
 3 |
 4 | public struct QuoteStyle {
   |               `- note: consider making struct 'QuoteStyle' conform to the 'Sendable' protocol
 5 |     public let openDouble: Character
 6 |     public let closeDouble: Character
   :
22 |     public static let french  = QuoteStyle(openDouble: "\u{00AB}", closeDouble: "\u{00BB}",
23 |                                            openSingle: "\u{2039}", closeSingle: "\u{203A}")
24 |     public static let swedish = QuoteStyle(openDouble: "\u{201D}", closeDouble: "\u{201D}",
   |                       |- warning: static property 'swedish' is not concurrency-safe because non-'Sendable' type 'QuoteStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'swedish' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |                                            openSingle: "\u{2019}", closeSingle: "\u{2019}")
26 | }
[147/184] Compiling HTMLToMarkdown vimeo.swift
/host/spi-builder-workspace/Sources/plugin/tasklist/tasklist.swift:22:30: warning: result of 'try?' is unused
20 |                 let checked = input.hasAttr("checked")
21 |                 let placeholder = try? Element(Tag.valueOf("task-list-checkbox"), "")
22 |                 if checked { try? placeholder?.attr("checked", "") }
   |                              `- warning: result of 'try?' is unused
23 |                 if let next = input.nextSibling() as? TextNode {
24 |                     let trimmed = next.text().replacingOccurrences(of: "^\\s+", with: "", options: .regularExpression)
/host/spi-builder-workspace/Sources/plugin/tasklist/tasklist.swift:25:21: warning: result of 'try?' is unused
23 |                 if let next = input.nextSibling() as? TextNode {
24 |                     let trimmed = next.text().replacingOccurrences(of: "^\\s+", with: "", options: .regularExpression)
25 |                     try? next.text(trimmed)
   |                     `- warning: result of 'try?' is unused
26 |                 }
27 |                 if let placeholder = placeholder {
/host/spi-builder-workspace/Sources/plugin/tasklist/tasklist.swift:25:21: warning: no calls to throwing functions occur within 'try' expression
23 |                 if let next = input.nextSibling() as? TextNode {
24 |                     let trimmed = next.text().replacingOccurrences(of: "^\\s+", with: "", options: .regularExpression)
25 |                     try? next.text(trimmed)
   |                     `- warning: no calls to throwing functions occur within 'try' expression
26 |                 }
27 |                 if let placeholder = placeholder {
/host/spi-builder-workspace/Sources/plugin/typography/typography.swift:18:23: warning: static property 'english' is not concurrency-safe because non-'Sendable' type 'QuoteStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import SwiftSoup
 3 |
 4 | public struct QuoteStyle {
   |               `- note: consider making struct 'QuoteStyle' conform to the 'Sendable' protocol
 5 |     public let openDouble: Character
 6 |     public let closeDouble: Character
   :
16 |     }
17 |
18 |     public static let english = QuoteStyle(openDouble: "\u{201C}", closeDouble: "\u{201D}",
   |                       |- warning: static property 'english' is not concurrency-safe because non-'Sendable' type 'QuoteStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'english' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 |                                            openSingle: "\u{2018}", closeSingle: "\u{2019}")
20 |     public static let german  = QuoteStyle(openDouble: "\u{201E}", closeDouble: "\u{201C}",
/host/spi-builder-workspace/Sources/plugin/typography/typography.swift:20:23: warning: static property 'german' is not concurrency-safe because non-'Sendable' type 'QuoteStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import SwiftSoup
 3 |
 4 | public struct QuoteStyle {
   |               `- note: consider making struct 'QuoteStyle' conform to the 'Sendable' protocol
 5 |     public let openDouble: Character
 6 |     public let closeDouble: Character
   :
18 |     public static let english = QuoteStyle(openDouble: "\u{201C}", closeDouble: "\u{201D}",
19 |                                            openSingle: "\u{2018}", closeSingle: "\u{2019}")
20 |     public static let german  = QuoteStyle(openDouble: "\u{201E}", closeDouble: "\u{201C}",
   |                       |- warning: static property 'german' is not concurrency-safe because non-'Sendable' type 'QuoteStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'german' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |                                            openSingle: "\u{201A}", closeSingle: "\u{2018}")
22 |     public static let french  = QuoteStyle(openDouble: "\u{00AB}", closeDouble: "\u{00BB}",
/host/spi-builder-workspace/Sources/plugin/typography/typography.swift:22:23: warning: static property 'french' is not concurrency-safe because non-'Sendable' type 'QuoteStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import SwiftSoup
 3 |
 4 | public struct QuoteStyle {
   |               `- note: consider making struct 'QuoteStyle' conform to the 'Sendable' protocol
 5 |     public let openDouble: Character
 6 |     public let closeDouble: Character
   :
20 |     public static let german  = QuoteStyle(openDouble: "\u{201E}", closeDouble: "\u{201C}",
21 |                                            openSingle: "\u{201A}", closeSingle: "\u{2018}")
22 |     public static let french  = QuoteStyle(openDouble: "\u{00AB}", closeDouble: "\u{00BB}",
   |                       |- warning: static property 'french' is not concurrency-safe because non-'Sendable' type 'QuoteStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'french' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |                                            openSingle: "\u{2039}", closeSingle: "\u{203A}")
24 |     public static let swedish = QuoteStyle(openDouble: "\u{201D}", closeDouble: "\u{201D}",
/host/spi-builder-workspace/Sources/plugin/typography/typography.swift:24:23: warning: static property 'swedish' is not concurrency-safe because non-'Sendable' type 'QuoteStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import SwiftSoup
 3 |
 4 | public struct QuoteStyle {
   |               `- note: consider making struct 'QuoteStyle' conform to the 'Sendable' protocol
 5 |     public let openDouble: Character
 6 |     public let closeDouble: Character
   :
22 |     public static let french  = QuoteStyle(openDouble: "\u{00AB}", closeDouble: "\u{00BB}",
23 |                                            openSingle: "\u{2039}", closeSingle: "\u{203A}")
24 |     public static let swedish = QuoteStyle(openDouble: "\u{201D}", closeDouble: "\u{201D}",
   |                       |- warning: static property 'swedish' is not concurrency-safe because non-'Sendable' type 'QuoteStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'swedish' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |                                            openSingle: "\u{2019}", closeSingle: "\u{2019}")
26 | }
[148/184] Compiling HTMLToMarkdown youtube.swift
/host/spi-builder-workspace/Sources/plugin/tasklist/tasklist.swift:22:30: warning: result of 'try?' is unused
20 |                 let checked = input.hasAttr("checked")
21 |                 let placeholder = try? Element(Tag.valueOf("task-list-checkbox"), "")
22 |                 if checked { try? placeholder?.attr("checked", "") }
   |                              `- warning: result of 'try?' is unused
23 |                 if let next = input.nextSibling() as? TextNode {
24 |                     let trimmed = next.text().replacingOccurrences(of: "^\\s+", with: "", options: .regularExpression)
/host/spi-builder-workspace/Sources/plugin/tasklist/tasklist.swift:25:21: warning: result of 'try?' is unused
23 |                 if let next = input.nextSibling() as? TextNode {
24 |                     let trimmed = next.text().replacingOccurrences(of: "^\\s+", with: "", options: .regularExpression)
25 |                     try? next.text(trimmed)
   |                     `- warning: result of 'try?' is unused
26 |                 }
27 |                 if let placeholder = placeholder {
/host/spi-builder-workspace/Sources/plugin/tasklist/tasklist.swift:25:21: warning: no calls to throwing functions occur within 'try' expression
23 |                 if let next = input.nextSibling() as? TextNode {
24 |                     let trimmed = next.text().replacingOccurrences(of: "^\\s+", with: "", options: .regularExpression)
25 |                     try? next.text(trimmed)
   |                     `- warning: no calls to throwing functions occur within 'try' expression
26 |                 }
27 |                 if let placeholder = placeholder {
/host/spi-builder-workspace/Sources/plugin/typography/typography.swift:18:23: warning: static property 'english' is not concurrency-safe because non-'Sendable' type 'QuoteStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import SwiftSoup
 3 |
 4 | public struct QuoteStyle {
   |               `- note: consider making struct 'QuoteStyle' conform to the 'Sendable' protocol
 5 |     public let openDouble: Character
 6 |     public let closeDouble: Character
   :
16 |     }
17 |
18 |     public static let english = QuoteStyle(openDouble: "\u{201C}", closeDouble: "\u{201D}",
   |                       |- warning: static property 'english' is not concurrency-safe because non-'Sendable' type 'QuoteStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'english' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 |                                            openSingle: "\u{2018}", closeSingle: "\u{2019}")
20 |     public static let german  = QuoteStyle(openDouble: "\u{201E}", closeDouble: "\u{201C}",
/host/spi-builder-workspace/Sources/plugin/typography/typography.swift:20:23: warning: static property 'german' is not concurrency-safe because non-'Sendable' type 'QuoteStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import SwiftSoup
 3 |
 4 | public struct QuoteStyle {
   |               `- note: consider making struct 'QuoteStyle' conform to the 'Sendable' protocol
 5 |     public let openDouble: Character
 6 |     public let closeDouble: Character
   :
18 |     public static let english = QuoteStyle(openDouble: "\u{201C}", closeDouble: "\u{201D}",
19 |                                            openSingle: "\u{2018}", closeSingle: "\u{2019}")
20 |     public static let german  = QuoteStyle(openDouble: "\u{201E}", closeDouble: "\u{201C}",
   |                       |- warning: static property 'german' is not concurrency-safe because non-'Sendable' type 'QuoteStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'german' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |                                            openSingle: "\u{201A}", closeSingle: "\u{2018}")
22 |     public static let french  = QuoteStyle(openDouble: "\u{00AB}", closeDouble: "\u{00BB}",
/host/spi-builder-workspace/Sources/plugin/typography/typography.swift:22:23: warning: static property 'french' is not concurrency-safe because non-'Sendable' type 'QuoteStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import SwiftSoup
 3 |
 4 | public struct QuoteStyle {
   |               `- note: consider making struct 'QuoteStyle' conform to the 'Sendable' protocol
 5 |     public let openDouble: Character
 6 |     public let closeDouble: Character
   :
20 |     public static let german  = QuoteStyle(openDouble: "\u{201E}", closeDouble: "\u{201C}",
21 |                                            openSingle: "\u{201A}", closeSingle: "\u{2018}")
22 |     public static let french  = QuoteStyle(openDouble: "\u{00AB}", closeDouble: "\u{00BB}",
   |                       |- warning: static property 'french' is not concurrency-safe because non-'Sendable' type 'QuoteStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'french' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |                                            openSingle: "\u{2039}", closeSingle: "\u{203A}")
24 |     public static let swedish = QuoteStyle(openDouble: "\u{201D}", closeDouble: "\u{201D}",
/host/spi-builder-workspace/Sources/plugin/typography/typography.swift:24:23: warning: static property 'swedish' is not concurrency-safe because non-'Sendable' type 'QuoteStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 2 | import SwiftSoup
 3 |
 4 | public struct QuoteStyle {
   |               `- note: consider making struct 'QuoteStyle' conform to the 'Sendable' protocol
 5 |     public let openDouble: Character
 6 |     public let closeDouble: Character
   :
22 |     public static let french  = QuoteStyle(openDouble: "\u{00AB}", closeDouble: "\u{00BB}",
23 |                                            openSingle: "\u{2039}", closeSingle: "\u{203A}")
24 |     public static let swedish = QuoteStyle(openDouble: "\u{201D}", closeDouble: "\u{201D}",
   |                       |- warning: static property 'swedish' is not concurrency-safe because non-'Sendable' type 'QuoteStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'swedish' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |                                            openSingle: "\u{2019}", closeSingle: "\u{2019}")
26 | }
[149/184] Compiling HTMLToMarkdown handle_pre_render.swift
/host/spi-builder-workspace/Sources/plugin/commonmark/handle_pre_render.swift:54:42: warning: conditional cast from 'Element' to 'Element' always succeeds
 52 |             var p = link.parent()
 53 |             while let parent = p {
 54 |                 if let parentEl = parent as? Element, parentEl.tagName() == "a" {
    |                                          `- warning: conditional cast from 'Element' to 'Element' always succeeds
 55 |                     try link.unwrap()
 56 |                     break
/host/spi-builder-workspace/Sources/plugin/commonmark/handle_pre_render.swift:149:29: warning: no calls to throwing functions occur within 'try' expression
147 |                         let t = firstText.getWholeText()
148 |                         if t.hasPrefix("\n") {
149 |                             try firstText.text(String(t.dropFirst()))
    |                             `- warning: no calls to throwing functions occur within 'try' expression
150 |                         }
151 |                     }
/host/spi-builder-workspace/Sources/plugin/commonmark/handle_pre_render.swift:193:37: warning: result of call to 'after' is unused
191 |                         try element.tagName("strong")
192 |                         let br = Element(Tag("br"), "")
193 |                         try element.after(br)
    |                                     `- warning: result of call to 'after' is unused
194 |                     case "blockquote":
195 |                         let quoteBefore = TextNode(" \"", "")
/host/spi-builder-workspace/Sources/plugin/commonmark/handle_pre_render.swift:198:37: warning: result of call to 'after' is unused
196 |                         let quoteAfter = TextNode("\" ", "")
197 |                         try element.before(quoteBefore)
198 |                         try element.after(quoteAfter)
    |                                     `- warning: result of call to 'after' is unused
199 |                         try element.tagName("span")
200 |                     case "pre":
/host/spi-builder-workspace/Sources/plugin/commonmark/handle_pre_render.swift:337:21: warning: no calls to throwing functions occur within 'try' expression
335 |             if getFirstCodeChild(element) != nil {
336 |                 if let prevText = getPrevTextNodeOf(element) {
337 |                     try prevText.text(prevText.getWholeText() + " ")
    |                     `- warning: no calls to throwing functions occur within 'try' expression
338 |                 }
339 |             }
/host/spi-builder-workspace/Sources/plugin/commonmark/handle_pre_render.swift:342:21: warning: no calls to throwing functions occur within 'try' expression
340 |             if getLastCodeChild(element) != nil {
341 |                 if let nextText = getNextTextNodeOf(element) {
342 |                     try nextText.text(" " + nextText.getWholeText())
    |                     `- warning: no calls to throwing functions occur within 'try' expression
343 |                 }
344 |             }
/host/spi-builder-workspace/Sources/plugin/commonmark/render_list.swift:16:23: warning: value 'self' was defined but never used; consider replacing with boolean test
14 |
15 |         conv.Register.rendererFor("ol", .block, { [weak self] ctx, w, n in
16 |             guard let self = self else { return .tryNext }
   |                       `- warning: value 'self' was defined but never used; consider replacing with boolean test
17 |             var startAt = 1
18 |             if let element = n as? Element,
[150/184] Compiling HTMLToMarkdown options.swift
/host/spi-builder-workspace/Sources/plugin/commonmark/handle_pre_render.swift:54:42: warning: conditional cast from 'Element' to 'Element' always succeeds
 52 |             var p = link.parent()
 53 |             while let parent = p {
 54 |                 if let parentEl = parent as? Element, parentEl.tagName() == "a" {
    |                                          `- warning: conditional cast from 'Element' to 'Element' always succeeds
 55 |                     try link.unwrap()
 56 |                     break
/host/spi-builder-workspace/Sources/plugin/commonmark/handle_pre_render.swift:149:29: warning: no calls to throwing functions occur within 'try' expression
147 |                         let t = firstText.getWholeText()
148 |                         if t.hasPrefix("\n") {
149 |                             try firstText.text(String(t.dropFirst()))
    |                             `- warning: no calls to throwing functions occur within 'try' expression
150 |                         }
151 |                     }
/host/spi-builder-workspace/Sources/plugin/commonmark/handle_pre_render.swift:193:37: warning: result of call to 'after' is unused
191 |                         try element.tagName("strong")
192 |                         let br = Element(Tag("br"), "")
193 |                         try element.after(br)
    |                                     `- warning: result of call to 'after' is unused
194 |                     case "blockquote":
195 |                         let quoteBefore = TextNode(" \"", "")
/host/spi-builder-workspace/Sources/plugin/commonmark/handle_pre_render.swift:198:37: warning: result of call to 'after' is unused
196 |                         let quoteAfter = TextNode("\" ", "")
197 |                         try element.before(quoteBefore)
198 |                         try element.after(quoteAfter)
    |                                     `- warning: result of call to 'after' is unused
199 |                         try element.tagName("span")
200 |                     case "pre":
/host/spi-builder-workspace/Sources/plugin/commonmark/handle_pre_render.swift:337:21: warning: no calls to throwing functions occur within 'try' expression
335 |             if getFirstCodeChild(element) != nil {
336 |                 if let prevText = getPrevTextNodeOf(element) {
337 |                     try prevText.text(prevText.getWholeText() + " ")
    |                     `- warning: no calls to throwing functions occur within 'try' expression
338 |                 }
339 |             }
/host/spi-builder-workspace/Sources/plugin/commonmark/handle_pre_render.swift:342:21: warning: no calls to throwing functions occur within 'try' expression
340 |             if getLastCodeChild(element) != nil {
341 |                 if let nextText = getNextTextNodeOf(element) {
342 |                     try nextText.text(" " + nextText.getWholeText())
    |                     `- warning: no calls to throwing functions occur within 'try' expression
343 |                 }
344 |             }
/host/spi-builder-workspace/Sources/plugin/commonmark/render_list.swift:16:23: warning: value 'self' was defined but never used; consider replacing with boolean test
14 |
15 |         conv.Register.rendererFor("ol", .block, { [weak self] ctx, w, n in
16 |             guard let self = self else { return .tryNext }
   |                       `- warning: value 'self' was defined but never used; consider replacing with boolean test
17 |             var startAt = 1
18 |             if let element = n as? Element,
[151/184] Compiling HTMLToMarkdown render_blockquote.swift
/host/spi-builder-workspace/Sources/plugin/commonmark/handle_pre_render.swift:54:42: warning: conditional cast from 'Element' to 'Element' always succeeds
 52 |             var p = link.parent()
 53 |             while let parent = p {
 54 |                 if let parentEl = parent as? Element, parentEl.tagName() == "a" {
    |                                          `- warning: conditional cast from 'Element' to 'Element' always succeeds
 55 |                     try link.unwrap()
 56 |                     break
/host/spi-builder-workspace/Sources/plugin/commonmark/handle_pre_render.swift:149:29: warning: no calls to throwing functions occur within 'try' expression
147 |                         let t = firstText.getWholeText()
148 |                         if t.hasPrefix("\n") {
149 |                             try firstText.text(String(t.dropFirst()))
    |                             `- warning: no calls to throwing functions occur within 'try' expression
150 |                         }
151 |                     }
/host/spi-builder-workspace/Sources/plugin/commonmark/handle_pre_render.swift:193:37: warning: result of call to 'after' is unused
191 |                         try element.tagName("strong")
192 |                         let br = Element(Tag("br"), "")
193 |                         try element.after(br)
    |                                     `- warning: result of call to 'after' is unused
194 |                     case "blockquote":
195 |                         let quoteBefore = TextNode(" \"", "")
/host/spi-builder-workspace/Sources/plugin/commonmark/handle_pre_render.swift:198:37: warning: result of call to 'after' is unused
196 |                         let quoteAfter = TextNode("\" ", "")
197 |                         try element.before(quoteBefore)
198 |                         try element.after(quoteAfter)
    |                                     `- warning: result of call to 'after' is unused
199 |                         try element.tagName("span")
200 |                     case "pre":
/host/spi-builder-workspace/Sources/plugin/commonmark/handle_pre_render.swift:337:21: warning: no calls to throwing functions occur within 'try' expression
335 |             if getFirstCodeChild(element) != nil {
336 |                 if let prevText = getPrevTextNodeOf(element) {
337 |                     try prevText.text(prevText.getWholeText() + " ")
    |                     `- warning: no calls to throwing functions occur within 'try' expression
338 |                 }
339 |             }
/host/spi-builder-workspace/Sources/plugin/commonmark/handle_pre_render.swift:342:21: warning: no calls to throwing functions occur within 'try' expression
340 |             if getLastCodeChild(element) != nil {
341 |                 if let nextText = getNextTextNodeOf(element) {
342 |                     try nextText.text(" " + nextText.getWholeText())
    |                     `- warning: no calls to throwing functions occur within 'try' expression
343 |                 }
344 |             }
/host/spi-builder-workspace/Sources/plugin/commonmark/render_list.swift:16:23: warning: value 'self' was defined but never used; consider replacing with boolean test
14 |
15 |         conv.Register.rendererFor("ol", .block, { [weak self] ctx, w, n in
16 |             guard let self = self else { return .tryNext }
   |                       `- warning: value 'self' was defined but never used; consider replacing with boolean test
17 |             var startAt = 1
18 |             if let element = n as? Element,
[152/184] Compiling HTMLToMarkdown render_bold_italic.swift
/host/spi-builder-workspace/Sources/plugin/commonmark/handle_pre_render.swift:54:42: warning: conditional cast from 'Element' to 'Element' always succeeds
 52 |             var p = link.parent()
 53 |             while let parent = p {
 54 |                 if let parentEl = parent as? Element, parentEl.tagName() == "a" {
    |                                          `- warning: conditional cast from 'Element' to 'Element' always succeeds
 55 |                     try link.unwrap()
 56 |                     break
/host/spi-builder-workspace/Sources/plugin/commonmark/handle_pre_render.swift:149:29: warning: no calls to throwing functions occur within 'try' expression
147 |                         let t = firstText.getWholeText()
148 |                         if t.hasPrefix("\n") {
149 |                             try firstText.text(String(t.dropFirst()))
    |                             `- warning: no calls to throwing functions occur within 'try' expression
150 |                         }
151 |                     }
/host/spi-builder-workspace/Sources/plugin/commonmark/handle_pre_render.swift:193:37: warning: result of call to 'after' is unused
191 |                         try element.tagName("strong")
192 |                         let br = Element(Tag("br"), "")
193 |                         try element.after(br)
    |                                     `- warning: result of call to 'after' is unused
194 |                     case "blockquote":
195 |                         let quoteBefore = TextNode(" \"", "")
/host/spi-builder-workspace/Sources/plugin/commonmark/handle_pre_render.swift:198:37: warning: result of call to 'after' is unused
196 |                         let quoteAfter = TextNode("\" ", "")
197 |                         try element.before(quoteBefore)
198 |                         try element.after(quoteAfter)
    |                                     `- warning: result of call to 'after' is unused
199 |                         try element.tagName("span")
200 |                     case "pre":
/host/spi-builder-workspace/Sources/plugin/commonmark/handle_pre_render.swift:337:21: warning: no calls to throwing functions occur within 'try' expression
335 |             if getFirstCodeChild(element) != nil {
336 |                 if let prevText = getPrevTextNodeOf(element) {
337 |                     try prevText.text(prevText.getWholeText() + " ")
    |                     `- warning: no calls to throwing functions occur within 'try' expression
338 |                 }
339 |             }
/host/spi-builder-workspace/Sources/plugin/commonmark/handle_pre_render.swift:342:21: warning: no calls to throwing functions occur within 'try' expression
340 |             if getLastCodeChild(element) != nil {
341 |                 if let nextText = getNextTextNodeOf(element) {
342 |                     try nextText.text(" " + nextText.getWholeText())
    |                     `- warning: no calls to throwing functions occur within 'try' expression
343 |                 }
344 |             }
/host/spi-builder-workspace/Sources/plugin/commonmark/render_list.swift:16:23: warning: value 'self' was defined but never used; consider replacing with boolean test
14 |
15 |         conv.Register.rendererFor("ol", .block, { [weak self] ctx, w, n in
16 |             guard let self = self else { return .tryNext }
   |                       `- warning: value 'self' was defined but never used; consider replacing with boolean test
17 |             var startAt = 1
18 |             if let element = n as? Element,
[153/184] Compiling HTMLToMarkdown render_break.swift
/host/spi-builder-workspace/Sources/plugin/commonmark/handle_pre_render.swift:54:42: warning: conditional cast from 'Element' to 'Element' always succeeds
 52 |             var p = link.parent()
 53 |             while let parent = p {
 54 |                 if let parentEl = parent as? Element, parentEl.tagName() == "a" {
    |                                          `- warning: conditional cast from 'Element' to 'Element' always succeeds
 55 |                     try link.unwrap()
 56 |                     break
/host/spi-builder-workspace/Sources/plugin/commonmark/handle_pre_render.swift:149:29: warning: no calls to throwing functions occur within 'try' expression
147 |                         let t = firstText.getWholeText()
148 |                         if t.hasPrefix("\n") {
149 |                             try firstText.text(String(t.dropFirst()))
    |                             `- warning: no calls to throwing functions occur within 'try' expression
150 |                         }
151 |                     }
/host/spi-builder-workspace/Sources/plugin/commonmark/handle_pre_render.swift:193:37: warning: result of call to 'after' is unused
191 |                         try element.tagName("strong")
192 |                         let br = Element(Tag("br"), "")
193 |                         try element.after(br)
    |                                     `- warning: result of call to 'after' is unused
194 |                     case "blockquote":
195 |                         let quoteBefore = TextNode(" \"", "")
/host/spi-builder-workspace/Sources/plugin/commonmark/handle_pre_render.swift:198:37: warning: result of call to 'after' is unused
196 |                         let quoteAfter = TextNode("\" ", "")
197 |                         try element.before(quoteBefore)
198 |                         try element.after(quoteAfter)
    |                                     `- warning: result of call to 'after' is unused
199 |                         try element.tagName("span")
200 |                     case "pre":
/host/spi-builder-workspace/Sources/plugin/commonmark/handle_pre_render.swift:337:21: warning: no calls to throwing functions occur within 'try' expression
335 |             if getFirstCodeChild(element) != nil {
336 |                 if let prevText = getPrevTextNodeOf(element) {
337 |                     try prevText.text(prevText.getWholeText() + " ")
    |                     `- warning: no calls to throwing functions occur within 'try' expression
338 |                 }
339 |             }
/host/spi-builder-workspace/Sources/plugin/commonmark/handle_pre_render.swift:342:21: warning: no calls to throwing functions occur within 'try' expression
340 |             if getLastCodeChild(element) != nil {
341 |                 if let nextText = getNextTextNodeOf(element) {
342 |                     try nextText.text(" " + nextText.getWholeText())
    |                     `- warning: no calls to throwing functions occur within 'try' expression
343 |                 }
344 |             }
/host/spi-builder-workspace/Sources/plugin/commonmark/render_list.swift:16:23: warning: value 'self' was defined but never used; consider replacing with boolean test
14 |
15 |         conv.Register.rendererFor("ol", .block, { [weak self] ctx, w, n in
16 |             guard let self = self else { return .tryNext }
   |                       `- warning: value 'self' was defined but never used; consider replacing with boolean test
17 |             var startAt = 1
18 |             if let element = n as? Element,
[154/184] Compiling HTMLToMarkdown render_code.swift
/host/spi-builder-workspace/Sources/plugin/commonmark/handle_pre_render.swift:54:42: warning: conditional cast from 'Element' to 'Element' always succeeds
 52 |             var p = link.parent()
 53 |             while let parent = p {
 54 |                 if let parentEl = parent as? Element, parentEl.tagName() == "a" {
    |                                          `- warning: conditional cast from 'Element' to 'Element' always succeeds
 55 |                     try link.unwrap()
 56 |                     break
/host/spi-builder-workspace/Sources/plugin/commonmark/handle_pre_render.swift:149:29: warning: no calls to throwing functions occur within 'try' expression
147 |                         let t = firstText.getWholeText()
148 |                         if t.hasPrefix("\n") {
149 |                             try firstText.text(String(t.dropFirst()))
    |                             `- warning: no calls to throwing functions occur within 'try' expression
150 |                         }
151 |                     }
/host/spi-builder-workspace/Sources/plugin/commonmark/handle_pre_render.swift:193:37: warning: result of call to 'after' is unused
191 |                         try element.tagName("strong")
192 |                         let br = Element(Tag("br"), "")
193 |                         try element.after(br)
    |                                     `- warning: result of call to 'after' is unused
194 |                     case "blockquote":
195 |                         let quoteBefore = TextNode(" \"", "")
/host/spi-builder-workspace/Sources/plugin/commonmark/handle_pre_render.swift:198:37: warning: result of call to 'after' is unused
196 |                         let quoteAfter = TextNode("\" ", "")
197 |                         try element.before(quoteBefore)
198 |                         try element.after(quoteAfter)
    |                                     `- warning: result of call to 'after' is unused
199 |                         try element.tagName("span")
200 |                     case "pre":
/host/spi-builder-workspace/Sources/plugin/commonmark/handle_pre_render.swift:337:21: warning: no calls to throwing functions occur within 'try' expression
335 |             if getFirstCodeChild(element) != nil {
336 |                 if let prevText = getPrevTextNodeOf(element) {
337 |                     try prevText.text(prevText.getWholeText() + " ")
    |                     `- warning: no calls to throwing functions occur within 'try' expression
338 |                 }
339 |             }
/host/spi-builder-workspace/Sources/plugin/commonmark/handle_pre_render.swift:342:21: warning: no calls to throwing functions occur within 'try' expression
340 |             if getLastCodeChild(element) != nil {
341 |                 if let nextText = getNextTextNodeOf(element) {
342 |                     try nextText.text(" " + nextText.getWholeText())
    |                     `- warning: no calls to throwing functions occur within 'try' expression
343 |                 }
344 |             }
/host/spi-builder-workspace/Sources/plugin/commonmark/render_list.swift:16:23: warning: value 'self' was defined but never used; consider replacing with boolean test
14 |
15 |         conv.Register.rendererFor("ol", .block, { [weak self] ctx, w, n in
16 |             guard let self = self else { return .tryNext }
   |                       `- warning: value 'self' was defined but never used; consider replacing with boolean test
17 |             var startAt = 1
18 |             if let element = n as? Element,
[155/184] Compiling HTMLToMarkdown render_comment.swift
/host/spi-builder-workspace/Sources/plugin/commonmark/handle_pre_render.swift:54:42: warning: conditional cast from 'Element' to 'Element' always succeeds
 52 |             var p = link.parent()
 53 |             while let parent = p {
 54 |                 if let parentEl = parent as? Element, parentEl.tagName() == "a" {
    |                                          `- warning: conditional cast from 'Element' to 'Element' always succeeds
 55 |                     try link.unwrap()
 56 |                     break
/host/spi-builder-workspace/Sources/plugin/commonmark/handle_pre_render.swift:149:29: warning: no calls to throwing functions occur within 'try' expression
147 |                         let t = firstText.getWholeText()
148 |                         if t.hasPrefix("\n") {
149 |                             try firstText.text(String(t.dropFirst()))
    |                             `- warning: no calls to throwing functions occur within 'try' expression
150 |                         }
151 |                     }
/host/spi-builder-workspace/Sources/plugin/commonmark/handle_pre_render.swift:193:37: warning: result of call to 'after' is unused
191 |                         try element.tagName("strong")
192 |                         let br = Element(Tag("br"), "")
193 |                         try element.after(br)
    |                                     `- warning: result of call to 'after' is unused
194 |                     case "blockquote":
195 |                         let quoteBefore = TextNode(" \"", "")
/host/spi-builder-workspace/Sources/plugin/commonmark/handle_pre_render.swift:198:37: warning: result of call to 'after' is unused
196 |                         let quoteAfter = TextNode("\" ", "")
197 |                         try element.before(quoteBefore)
198 |                         try element.after(quoteAfter)
    |                                     `- warning: result of call to 'after' is unused
199 |                         try element.tagName("span")
200 |                     case "pre":
/host/spi-builder-workspace/Sources/plugin/commonmark/handle_pre_render.swift:337:21: warning: no calls to throwing functions occur within 'try' expression
335 |             if getFirstCodeChild(element) != nil {
336 |                 if let prevText = getPrevTextNodeOf(element) {
337 |                     try prevText.text(prevText.getWholeText() + " ")
    |                     `- warning: no calls to throwing functions occur within 'try' expression
338 |                 }
339 |             }
/host/spi-builder-workspace/Sources/plugin/commonmark/handle_pre_render.swift:342:21: warning: no calls to throwing functions occur within 'try' expression
340 |             if getLastCodeChild(element) != nil {
341 |                 if let nextText = getNextTextNodeOf(element) {
342 |                     try nextText.text(" " + nextText.getWholeText())
    |                     `- warning: no calls to throwing functions occur within 'try' expression
343 |                 }
344 |             }
/host/spi-builder-workspace/Sources/plugin/commonmark/render_list.swift:16:23: warning: value 'self' was defined but never used; consider replacing with boolean test
14 |
15 |         conv.Register.rendererFor("ol", .block, { [weak self] ctx, w, n in
16 |             guard let self = self else { return .tryNext }
   |                       `- warning: value 'self' was defined but never used; consider replacing with boolean test
17 |             var startAt = 1
18 |             if let element = n as? Element,
[156/184] Compiling HTMLToMarkdown render_divider.swift
/host/spi-builder-workspace/Sources/plugin/commonmark/handle_pre_render.swift:54:42: warning: conditional cast from 'Element' to 'Element' always succeeds
 52 |             var p = link.parent()
 53 |             while let parent = p {
 54 |                 if let parentEl = parent as? Element, parentEl.tagName() == "a" {
    |                                          `- warning: conditional cast from 'Element' to 'Element' always succeeds
 55 |                     try link.unwrap()
 56 |                     break
/host/spi-builder-workspace/Sources/plugin/commonmark/handle_pre_render.swift:149:29: warning: no calls to throwing functions occur within 'try' expression
147 |                         let t = firstText.getWholeText()
148 |                         if t.hasPrefix("\n") {
149 |                             try firstText.text(String(t.dropFirst()))
    |                             `- warning: no calls to throwing functions occur within 'try' expression
150 |                         }
151 |                     }
/host/spi-builder-workspace/Sources/plugin/commonmark/handle_pre_render.swift:193:37: warning: result of call to 'after' is unused
191 |                         try element.tagName("strong")
192 |                         let br = Element(Tag("br"), "")
193 |                         try element.after(br)
    |                                     `- warning: result of call to 'after' is unused
194 |                     case "blockquote":
195 |                         let quoteBefore = TextNode(" \"", "")
/host/spi-builder-workspace/Sources/plugin/commonmark/handle_pre_render.swift:198:37: warning: result of call to 'after' is unused
196 |                         let quoteAfter = TextNode("\" ", "")
197 |                         try element.before(quoteBefore)
198 |                         try element.after(quoteAfter)
    |                                     `- warning: result of call to 'after' is unused
199 |                         try element.tagName("span")
200 |                     case "pre":
/host/spi-builder-workspace/Sources/plugin/commonmark/handle_pre_render.swift:337:21: warning: no calls to throwing functions occur within 'try' expression
335 |             if getFirstCodeChild(element) != nil {
336 |                 if let prevText = getPrevTextNodeOf(element) {
337 |                     try prevText.text(prevText.getWholeText() + " ")
    |                     `- warning: no calls to throwing functions occur within 'try' expression
338 |                 }
339 |             }
/host/spi-builder-workspace/Sources/plugin/commonmark/handle_pre_render.swift:342:21: warning: no calls to throwing functions occur within 'try' expression
340 |             if getLastCodeChild(element) != nil {
341 |                 if let nextText = getNextTextNodeOf(element) {
342 |                     try nextText.text(" " + nextText.getWholeText())
    |                     `- warning: no calls to throwing functions occur within 'try' expression
343 |                 }
344 |             }
/host/spi-builder-workspace/Sources/plugin/commonmark/render_list.swift:16:23: warning: value 'self' was defined but never used; consider replacing with boolean test
14 |
15 |         conv.Register.rendererFor("ol", .block, { [weak self] ctx, w, n in
16 |             guard let self = self else { return .tryNext }
   |                       `- warning: value 'self' was defined but never used; consider replacing with boolean test
17 |             var startAt = 1
18 |             if let element = n as? Element,
[157/184] Compiling HTMLToMarkdown render_heading.swift
/host/spi-builder-workspace/Sources/plugin/commonmark/handle_pre_render.swift:54:42: warning: conditional cast from 'Element' to 'Element' always succeeds
 52 |             var p = link.parent()
 53 |             while let parent = p {
 54 |                 if let parentEl = parent as? Element, parentEl.tagName() == "a" {
    |                                          `- warning: conditional cast from 'Element' to 'Element' always succeeds
 55 |                     try link.unwrap()
 56 |                     break
/host/spi-builder-workspace/Sources/plugin/commonmark/handle_pre_render.swift:149:29: warning: no calls to throwing functions occur within 'try' expression
147 |                         let t = firstText.getWholeText()
148 |                         if t.hasPrefix("\n") {
149 |                             try firstText.text(String(t.dropFirst()))
    |                             `- warning: no calls to throwing functions occur within 'try' expression
150 |                         }
151 |                     }
/host/spi-builder-workspace/Sources/plugin/commonmark/handle_pre_render.swift:193:37: warning: result of call to 'after' is unused
191 |                         try element.tagName("strong")
192 |                         let br = Element(Tag("br"), "")
193 |                         try element.after(br)
    |                                     `- warning: result of call to 'after' is unused
194 |                     case "blockquote":
195 |                         let quoteBefore = TextNode(" \"", "")
/host/spi-builder-workspace/Sources/plugin/commonmark/handle_pre_render.swift:198:37: warning: result of call to 'after' is unused
196 |                         let quoteAfter = TextNode("\" ", "")
197 |                         try element.before(quoteBefore)
198 |                         try element.after(quoteAfter)
    |                                     `- warning: result of call to 'after' is unused
199 |                         try element.tagName("span")
200 |                     case "pre":
/host/spi-builder-workspace/Sources/plugin/commonmark/handle_pre_render.swift:337:21: warning: no calls to throwing functions occur within 'try' expression
335 |             if getFirstCodeChild(element) != nil {
336 |                 if let prevText = getPrevTextNodeOf(element) {
337 |                     try prevText.text(prevText.getWholeText() + " ")
    |                     `- warning: no calls to throwing functions occur within 'try' expression
338 |                 }
339 |             }
/host/spi-builder-workspace/Sources/plugin/commonmark/handle_pre_render.swift:342:21: warning: no calls to throwing functions occur within 'try' expression
340 |             if getLastCodeChild(element) != nil {
341 |                 if let nextText = getNextTextNodeOf(element) {
342 |                     try nextText.text(" " + nextText.getWholeText())
    |                     `- warning: no calls to throwing functions occur within 'try' expression
343 |                 }
344 |             }
/host/spi-builder-workspace/Sources/plugin/commonmark/render_list.swift:16:23: warning: value 'self' was defined but never used; consider replacing with boolean test
14 |
15 |         conv.Register.rendererFor("ol", .block, { [weak self] ctx, w, n in
16 |             guard let self = self else { return .tryNext }
   |                       `- warning: value 'self' was defined but never used; consider replacing with boolean test
17 |             var startAt = 1
18 |             if let element = n as? Element,
[158/184] Compiling HTMLToMarkdown render_image.swift
/host/spi-builder-workspace/Sources/plugin/commonmark/handle_pre_render.swift:54:42: warning: conditional cast from 'Element' to 'Element' always succeeds
 52 |             var p = link.parent()
 53 |             while let parent = p {
 54 |                 if let parentEl = parent as? Element, parentEl.tagName() == "a" {
    |                                          `- warning: conditional cast from 'Element' to 'Element' always succeeds
 55 |                     try link.unwrap()
 56 |                     break
/host/spi-builder-workspace/Sources/plugin/commonmark/handle_pre_render.swift:149:29: warning: no calls to throwing functions occur within 'try' expression
147 |                         let t = firstText.getWholeText()
148 |                         if t.hasPrefix("\n") {
149 |                             try firstText.text(String(t.dropFirst()))
    |                             `- warning: no calls to throwing functions occur within 'try' expression
150 |                         }
151 |                     }
/host/spi-builder-workspace/Sources/plugin/commonmark/handle_pre_render.swift:193:37: warning: result of call to 'after' is unused
191 |                         try element.tagName("strong")
192 |                         let br = Element(Tag("br"), "")
193 |                         try element.after(br)
    |                                     `- warning: result of call to 'after' is unused
194 |                     case "blockquote":
195 |                         let quoteBefore = TextNode(" \"", "")
/host/spi-builder-workspace/Sources/plugin/commonmark/handle_pre_render.swift:198:37: warning: result of call to 'after' is unused
196 |                         let quoteAfter = TextNode("\" ", "")
197 |                         try element.before(quoteBefore)
198 |                         try element.after(quoteAfter)
    |                                     `- warning: result of call to 'after' is unused
199 |                         try element.tagName("span")
200 |                     case "pre":
/host/spi-builder-workspace/Sources/plugin/commonmark/handle_pre_render.swift:337:21: warning: no calls to throwing functions occur within 'try' expression
335 |             if getFirstCodeChild(element) != nil {
336 |                 if let prevText = getPrevTextNodeOf(element) {
337 |                     try prevText.text(prevText.getWholeText() + " ")
    |                     `- warning: no calls to throwing functions occur within 'try' expression
338 |                 }
339 |             }
/host/spi-builder-workspace/Sources/plugin/commonmark/handle_pre_render.swift:342:21: warning: no calls to throwing functions occur within 'try' expression
340 |             if getLastCodeChild(element) != nil {
341 |                 if let nextText = getNextTextNodeOf(element) {
342 |                     try nextText.text(" " + nextText.getWholeText())
    |                     `- warning: no calls to throwing functions occur within 'try' expression
343 |                 }
344 |             }
/host/spi-builder-workspace/Sources/plugin/commonmark/render_list.swift:16:23: warning: value 'self' was defined but never used; consider replacing with boolean test
14 |
15 |         conv.Register.rendererFor("ol", .block, { [weak self] ctx, w, n in
16 |             guard let self = self else { return .tryNext }
   |                       `- warning: value 'self' was defined but never used; consider replacing with boolean test
17 |             var startAt = 1
18 |             if let element = n as? Element,
[159/184] Compiling HTMLToMarkdown render_link.swift
/host/spi-builder-workspace/Sources/plugin/commonmark/handle_pre_render.swift:54:42: warning: conditional cast from 'Element' to 'Element' always succeeds
 52 |             var p = link.parent()
 53 |             while let parent = p {
 54 |                 if let parentEl = parent as? Element, parentEl.tagName() == "a" {
    |                                          `- warning: conditional cast from 'Element' to 'Element' always succeeds
 55 |                     try link.unwrap()
 56 |                     break
/host/spi-builder-workspace/Sources/plugin/commonmark/handle_pre_render.swift:149:29: warning: no calls to throwing functions occur within 'try' expression
147 |                         let t = firstText.getWholeText()
148 |                         if t.hasPrefix("\n") {
149 |                             try firstText.text(String(t.dropFirst()))
    |                             `- warning: no calls to throwing functions occur within 'try' expression
150 |                         }
151 |                     }
/host/spi-builder-workspace/Sources/plugin/commonmark/handle_pre_render.swift:193:37: warning: result of call to 'after' is unused
191 |                         try element.tagName("strong")
192 |                         let br = Element(Tag("br"), "")
193 |                         try element.after(br)
    |                                     `- warning: result of call to 'after' is unused
194 |                     case "blockquote":
195 |                         let quoteBefore = TextNode(" \"", "")
/host/spi-builder-workspace/Sources/plugin/commonmark/handle_pre_render.swift:198:37: warning: result of call to 'after' is unused
196 |                         let quoteAfter = TextNode("\" ", "")
197 |                         try element.before(quoteBefore)
198 |                         try element.after(quoteAfter)
    |                                     `- warning: result of call to 'after' is unused
199 |                         try element.tagName("span")
200 |                     case "pre":
/host/spi-builder-workspace/Sources/plugin/commonmark/handle_pre_render.swift:337:21: warning: no calls to throwing functions occur within 'try' expression
335 |             if getFirstCodeChild(element) != nil {
336 |                 if let prevText = getPrevTextNodeOf(element) {
337 |                     try prevText.text(prevText.getWholeText() + " ")
    |                     `- warning: no calls to throwing functions occur within 'try' expression
338 |                 }
339 |             }
/host/spi-builder-workspace/Sources/plugin/commonmark/handle_pre_render.swift:342:21: warning: no calls to throwing functions occur within 'try' expression
340 |             if getLastCodeChild(element) != nil {
341 |                 if let nextText = getNextTextNodeOf(element) {
342 |                     try nextText.text(" " + nextText.getWholeText())
    |                     `- warning: no calls to throwing functions occur within 'try' expression
343 |                 }
344 |             }
/host/spi-builder-workspace/Sources/plugin/commonmark/render_list.swift:16:23: warning: value 'self' was defined but never used; consider replacing with boolean test
14 |
15 |         conv.Register.rendererFor("ol", .block, { [weak self] ctx, w, n in
16 |             guard let self = self else { return .tryNext }
   |                       `- warning: value 'self' was defined but never used; consider replacing with boolean test
17 |             var startAt = 1
18 |             if let element = n as? Element,
[160/184] Compiling HTMLToMarkdown render_list.swift
/host/spi-builder-workspace/Sources/plugin/commonmark/handle_pre_render.swift:54:42: warning: conditional cast from 'Element' to 'Element' always succeeds
 52 |             var p = link.parent()
 53 |             while let parent = p {
 54 |                 if let parentEl = parent as? Element, parentEl.tagName() == "a" {
    |                                          `- warning: conditional cast from 'Element' to 'Element' always succeeds
 55 |                     try link.unwrap()
 56 |                     break
/host/spi-builder-workspace/Sources/plugin/commonmark/handle_pre_render.swift:149:29: warning: no calls to throwing functions occur within 'try' expression
147 |                         let t = firstText.getWholeText()
148 |                         if t.hasPrefix("\n") {
149 |                             try firstText.text(String(t.dropFirst()))
    |                             `- warning: no calls to throwing functions occur within 'try' expression
150 |                         }
151 |                     }
/host/spi-builder-workspace/Sources/plugin/commonmark/handle_pre_render.swift:193:37: warning: result of call to 'after' is unused
191 |                         try element.tagName("strong")
192 |                         let br = Element(Tag("br"), "")
193 |                         try element.after(br)
    |                                     `- warning: result of call to 'after' is unused
194 |                     case "blockquote":
195 |                         let quoteBefore = TextNode(" \"", "")
/host/spi-builder-workspace/Sources/plugin/commonmark/handle_pre_render.swift:198:37: warning: result of call to 'after' is unused
196 |                         let quoteAfter = TextNode("\" ", "")
197 |                         try element.before(quoteBefore)
198 |                         try element.after(quoteAfter)
    |                                     `- warning: result of call to 'after' is unused
199 |                         try element.tagName("span")
200 |                     case "pre":
/host/spi-builder-workspace/Sources/plugin/commonmark/handle_pre_render.swift:337:21: warning: no calls to throwing functions occur within 'try' expression
335 |             if getFirstCodeChild(element) != nil {
336 |                 if let prevText = getPrevTextNodeOf(element) {
337 |                     try prevText.text(prevText.getWholeText() + " ")
    |                     `- warning: no calls to throwing functions occur within 'try' expression
338 |                 }
339 |             }
/host/spi-builder-workspace/Sources/plugin/commonmark/handle_pre_render.swift:342:21: warning: no calls to throwing functions occur within 'try' expression
340 |             if getLastCodeChild(element) != nil {
341 |                 if let nextText = getNextTextNodeOf(element) {
342 |                     try nextText.text(" " + nextText.getWholeText())
    |                     `- warning: no calls to throwing functions occur within 'try' expression
343 |                 }
344 |             }
/host/spi-builder-workspace/Sources/plugin/commonmark/render_list.swift:16:23: warning: value 'self' was defined but never used; consider replacing with boolean test
14 |
15 |         conv.Register.rendererFor("ol", .block, { [weak self] ctx, w, n in
16 |             guard let self = self else { return .tryNext }
   |                       `- warning: value 'self' was defined but never used; consider replacing with boolean test
17 |             var startAt = 1
18 |             if let element = n as? Element,
[161/184] Compiling HTMLToMarkdown prefix_lines.swift
/host/spi-builder-workspace/Sources/plugin/atlassian/atlassian_render_attachments.swift:17:17: warning: result of 'try?' is unused
15 |
16 |                 guard let img = try? Element(Tag.valueOf("img"), "") else { continue }
17 |                 try? img.attr("src", filename)
   |                 `- warning: result of 'try?' is unused
18 |                 try? img.attr("alt", filename)
19 |
/host/spi-builder-workspace/Sources/plugin/atlassian/atlassian_render_attachments.swift:18:17: warning: result of 'try?' is unused
16 |                 guard let img = try? Element(Tag.valueOf("img"), "") else { continue }
17 |                 try? img.attr("src", filename)
18 |                 try? img.attr("alt", filename)
   |                 `- warning: result of 'try?' is unused
19 |
20 |                 // Carry over ac:width as width attribute
/host/spi-builder-workspace/Sources/plugin/atlassian/atlassian_render_attachments.swift:22:37: warning: result of 'try?' is unused
20 |                 // Carry over ac:width as width attribute
21 |                 let width = (try? acImage.attr("ac:width")) ?? ""
22 |                 if !width.isEmpty { try? img.attr("width", width) }
   |                                     `- warning: result of 'try?' is unused
23 |
24 |                 try? acImage.replaceWith(img)
/host/spi-builder-workspace/Sources/plugin/atlassian/atlassian_render_attachments.swift:44:17: warning: result of 'try?' is unused
42 |
43 |                 guard let a = try? Element(Tag.valueOf("a"), "") else { continue }
44 |                 try? a.attr("href", filename)
   |                 `- warning: result of 'try?' is unused
45 |                 try? a.text(label)
46 |                 try? acLink.replaceWith(a)
/host/spi-builder-workspace/Sources/plugin/atlassian/atlassian_render_attachments.swift:45:17: warning: result of 'try?' is unused
43 |                 guard let a = try? Element(Tag.valueOf("a"), "") else { continue }
44 |                 try? a.attr("href", filename)
45 |                 try? a.text(label)
   |                 `- warning: result of 'try?' is unused
46 |                 try? acLink.replaceWith(a)
47 |             }
/host/spi-builder-workspace/Sources/plugin/atlassian/atlassian_render_code_blocks.swift:23:40: warning: result of 'try?' is unused
21 |                 guard let pre = try? Element(Tag.valueOf("pre"), ""),
22 |                       let code = try? Element(Tag.valueOf("code"), "") else { continue }
23 |                 if !language.isEmpty { try? code.attr("class", "language-\(language)") }
   |                                        `- warning: result of 'try?' is unused
24 |                 try? code.text(codeText)
25 |                 try? pre.appendChild(code)
/host/spi-builder-workspace/Sources/plugin/atlassian/atlassian_render_code_blocks.swift:24:17: warning: result of 'try?' is unused
22 |                       let code = try? Element(Tag.valueOf("code"), "") else { continue }
23 |                 if !language.isEmpty { try? code.attr("class", "language-\(language)") }
24 |                 try? code.text(codeText)
   |                 `- warning: result of 'try?' is unused
25 |                 try? pre.appendChild(code)
26 |                 try? macro.replaceWith(pre)
/host/spi-builder-workspace/Sources/plugin/atlassian/atlassian_render_code_blocks.swift:25:17: warning: result of 'try?' is unused
23 |                 if !language.isEmpty { try? code.attr("class", "language-\(language)") }
24 |                 try? code.text(codeText)
25 |                 try? pre.appendChild(code)
   |                 `- warning: result of 'try?' is unused
26 |                 try? macro.replaceWith(pre)
27 |             }
[162/184] Compiling HTMLToMarkdown quote.swift
/host/spi-builder-workspace/Sources/plugin/atlassian/atlassian_render_attachments.swift:17:17: warning: result of 'try?' is unused
15 |
16 |                 guard let img = try? Element(Tag.valueOf("img"), "") else { continue }
17 |                 try? img.attr("src", filename)
   |                 `- warning: result of 'try?' is unused
18 |                 try? img.attr("alt", filename)
19 |
/host/spi-builder-workspace/Sources/plugin/atlassian/atlassian_render_attachments.swift:18:17: warning: result of 'try?' is unused
16 |                 guard let img = try? Element(Tag.valueOf("img"), "") else { continue }
17 |                 try? img.attr("src", filename)
18 |                 try? img.attr("alt", filename)
   |                 `- warning: result of 'try?' is unused
19 |
20 |                 // Carry over ac:width as width attribute
/host/spi-builder-workspace/Sources/plugin/atlassian/atlassian_render_attachments.swift:22:37: warning: result of 'try?' is unused
20 |                 // Carry over ac:width as width attribute
21 |                 let width = (try? acImage.attr("ac:width")) ?? ""
22 |                 if !width.isEmpty { try? img.attr("width", width) }
   |                                     `- warning: result of 'try?' is unused
23 |
24 |                 try? acImage.replaceWith(img)
/host/spi-builder-workspace/Sources/plugin/atlassian/atlassian_render_attachments.swift:44:17: warning: result of 'try?' is unused
42 |
43 |                 guard let a = try? Element(Tag.valueOf("a"), "") else { continue }
44 |                 try? a.attr("href", filename)
   |                 `- warning: result of 'try?' is unused
45 |                 try? a.text(label)
46 |                 try? acLink.replaceWith(a)
/host/spi-builder-workspace/Sources/plugin/atlassian/atlassian_render_attachments.swift:45:17: warning: result of 'try?' is unused
43 |                 guard let a = try? Element(Tag.valueOf("a"), "") else { continue }
44 |                 try? a.attr("href", filename)
45 |                 try? a.text(label)
   |                 `- warning: result of 'try?' is unused
46 |                 try? acLink.replaceWith(a)
47 |             }
/host/spi-builder-workspace/Sources/plugin/atlassian/atlassian_render_code_blocks.swift:23:40: warning: result of 'try?' is unused
21 |                 guard let pre = try? Element(Tag.valueOf("pre"), ""),
22 |                       let code = try? Element(Tag.valueOf("code"), "") else { continue }
23 |                 if !language.isEmpty { try? code.attr("class", "language-\(language)") }
   |                                        `- warning: result of 'try?' is unused
24 |                 try? code.text(codeText)
25 |                 try? pre.appendChild(code)
/host/spi-builder-workspace/Sources/plugin/atlassian/atlassian_render_code_blocks.swift:24:17: warning: result of 'try?' is unused
22 |                       let code = try? Element(Tag.valueOf("code"), "") else { continue }
23 |                 if !language.isEmpty { try? code.attr("class", "language-\(language)") }
24 |                 try? code.text(codeText)
   |                 `- warning: result of 'try?' is unused
25 |                 try? pre.appendChild(code)
26 |                 try? macro.replaceWith(pre)
/host/spi-builder-workspace/Sources/plugin/atlassian/atlassian_render_code_blocks.swift:25:17: warning: result of 'try?' is unused
23 |                 if !language.isEmpty { try? code.attr("class", "language-\(language)") }
24 |                 try? code.text(codeText)
25 |                 try? pre.appendChild(code)
   |                 `- warning: result of 'try?' is unused
26 |                 try? macro.replaceWith(pre)
27 |             }
[163/184] Compiling HTMLToMarkdown surrounding_spaces.swift
/host/spi-builder-workspace/Sources/plugin/atlassian/atlassian_render_attachments.swift:17:17: warning: result of 'try?' is unused
15 |
16 |                 guard let img = try? Element(Tag.valueOf("img"), "") else { continue }
17 |                 try? img.attr("src", filename)
   |                 `- warning: result of 'try?' is unused
18 |                 try? img.attr("alt", filename)
19 |
/host/spi-builder-workspace/Sources/plugin/atlassian/atlassian_render_attachments.swift:18:17: warning: result of 'try?' is unused
16 |                 guard let img = try? Element(Tag.valueOf("img"), "") else { continue }
17 |                 try? img.attr("src", filename)
18 |                 try? img.attr("alt", filename)
   |                 `- warning: result of 'try?' is unused
19 |
20 |                 // Carry over ac:width as width attribute
/host/spi-builder-workspace/Sources/plugin/atlassian/atlassian_render_attachments.swift:22:37: warning: result of 'try?' is unused
20 |                 // Carry over ac:width as width attribute
21 |                 let width = (try? acImage.attr("ac:width")) ?? ""
22 |                 if !width.isEmpty { try? img.attr("width", width) }
   |                                     `- warning: result of 'try?' is unused
23 |
24 |                 try? acImage.replaceWith(img)
/host/spi-builder-workspace/Sources/plugin/atlassian/atlassian_render_attachments.swift:44:17: warning: result of 'try?' is unused
42 |
43 |                 guard let a = try? Element(Tag.valueOf("a"), "") else { continue }
44 |                 try? a.attr("href", filename)
   |                 `- warning: result of 'try?' is unused
45 |                 try? a.text(label)
46 |                 try? acLink.replaceWith(a)
/host/spi-builder-workspace/Sources/plugin/atlassian/atlassian_render_attachments.swift:45:17: warning: result of 'try?' is unused
43 |                 guard let a = try? Element(Tag.valueOf("a"), "") else { continue }
44 |                 try? a.attr("href", filename)
45 |                 try? a.text(label)
   |                 `- warning: result of 'try?' is unused
46 |                 try? acLink.replaceWith(a)
47 |             }
/host/spi-builder-workspace/Sources/plugin/atlassian/atlassian_render_code_blocks.swift:23:40: warning: result of 'try?' is unused
21 |                 guard let pre = try? Element(Tag.valueOf("pre"), ""),
22 |                       let code = try? Element(Tag.valueOf("code"), "") else { continue }
23 |                 if !language.isEmpty { try? code.attr("class", "language-\(language)") }
   |                                        `- warning: result of 'try?' is unused
24 |                 try? code.text(codeText)
25 |                 try? pre.appendChild(code)
/host/spi-builder-workspace/Sources/plugin/atlassian/atlassian_render_code_blocks.swift:24:17: warning: result of 'try?' is unused
22 |                       let code = try? Element(Tag.valueOf("code"), "") else { continue }
23 |                 if !language.isEmpty { try? code.attr("class", "language-\(language)") }
24 |                 try? code.text(codeText)
   |                 `- warning: result of 'try?' is unused
25 |                 try? pre.appendChild(code)
26 |                 try? macro.replaceWith(pre)
/host/spi-builder-workspace/Sources/plugin/atlassian/atlassian_render_code_blocks.swift:25:17: warning: result of 'try?' is unused
23 |                 if !language.isEmpty { try? code.attr("class", "language-\(language)") }
24 |                 try? code.text(codeText)
25 |                 try? pre.appendChild(code)
   |                 `- warning: result of 'try?' is unused
26 |                 try? macro.replaceWith(pre)
27 |             }
[164/184] Compiling HTMLToMarkdown marker.swift
/host/spi-builder-workspace/Sources/plugin/atlassian/atlassian_render_attachments.swift:17:17: warning: result of 'try?' is unused
15 |
16 |                 guard let img = try? Element(Tag.valueOf("img"), "") else { continue }
17 |                 try? img.attr("src", filename)
   |                 `- warning: result of 'try?' is unused
18 |                 try? img.attr("alt", filename)
19 |
/host/spi-builder-workspace/Sources/plugin/atlassian/atlassian_render_attachments.swift:18:17: warning: result of 'try?' is unused
16 |                 guard let img = try? Element(Tag.valueOf("img"), "") else { continue }
17 |                 try? img.attr("src", filename)
18 |                 try? img.attr("alt", filename)
   |                 `- warning: result of 'try?' is unused
19 |
20 |                 // Carry over ac:width as width attribute
/host/spi-builder-workspace/Sources/plugin/atlassian/atlassian_render_attachments.swift:22:37: warning: result of 'try?' is unused
20 |                 // Carry over ac:width as width attribute
21 |                 let width = (try? acImage.attr("ac:width")) ?? ""
22 |                 if !width.isEmpty { try? img.attr("width", width) }
   |                                     `- warning: result of 'try?' is unused
23 |
24 |                 try? acImage.replaceWith(img)
/host/spi-builder-workspace/Sources/plugin/atlassian/atlassian_render_attachments.swift:44:17: warning: result of 'try?' is unused
42 |
43 |                 guard let a = try? Element(Tag.valueOf("a"), "") else { continue }
44 |                 try? a.attr("href", filename)
   |                 `- warning: result of 'try?' is unused
45 |                 try? a.text(label)
46 |                 try? acLink.replaceWith(a)
/host/spi-builder-workspace/Sources/plugin/atlassian/atlassian_render_attachments.swift:45:17: warning: result of 'try?' is unused
43 |                 guard let a = try? Element(Tag.valueOf("a"), "") else { continue }
44 |                 try? a.attr("href", filename)
45 |                 try? a.text(label)
   |                 `- warning: result of 'try?' is unused
46 |                 try? acLink.replaceWith(a)
47 |             }
/host/spi-builder-workspace/Sources/plugin/atlassian/atlassian_render_code_blocks.swift:23:40: warning: result of 'try?' is unused
21 |                 guard let pre = try? Element(Tag.valueOf("pre"), ""),
22 |                       let code = try? Element(Tag.valueOf("code"), "") else { continue }
23 |                 if !language.isEmpty { try? code.attr("class", "language-\(language)") }
   |                                        `- warning: result of 'try?' is unused
24 |                 try? code.text(codeText)
25 |                 try? pre.appendChild(code)
/host/spi-builder-workspace/Sources/plugin/atlassian/atlassian_render_code_blocks.swift:24:17: warning: result of 'try?' is unused
22 |                       let code = try? Element(Tag.valueOf("code"), "") else { continue }
23 |                 if !language.isEmpty { try? code.attr("class", "language-\(language)") }
24 |                 try? code.text(codeText)
   |                 `- warning: result of 'try?' is unused
25 |                 try? pre.appendChild(code)
26 |                 try? macro.replaceWith(pre)
/host/spi-builder-workspace/Sources/plugin/atlassian/atlassian_render_code_blocks.swift:25:17: warning: result of 'try?' is unused
23 |                 if !language.isEmpty { try? code.attr("class", "language-\(language)") }
24 |                 try? code.text(codeText)
25 |                 try? pre.appendChild(code)
   |                 `- warning: result of 'try?' is unused
26 |                 try? macro.replaceWith(pre)
27 |             }
[165/184] Compiling HTMLToMarkdown atlassian.swift
/host/spi-builder-workspace/Sources/plugin/atlassian/atlassian_render_attachments.swift:17:17: warning: result of 'try?' is unused
15 |
16 |                 guard let img = try? Element(Tag.valueOf("img"), "") else { continue }
17 |                 try? img.attr("src", filename)
   |                 `- warning: result of 'try?' is unused
18 |                 try? img.attr("alt", filename)
19 |
/host/spi-builder-workspace/Sources/plugin/atlassian/atlassian_render_attachments.swift:18:17: warning: result of 'try?' is unused
16 |                 guard let img = try? Element(Tag.valueOf("img"), "") else { continue }
17 |                 try? img.attr("src", filename)
18 |                 try? img.attr("alt", filename)
   |                 `- warning: result of 'try?' is unused
19 |
20 |                 // Carry over ac:width as width attribute
/host/spi-builder-workspace/Sources/plugin/atlassian/atlassian_render_attachments.swift:22:37: warning: result of 'try?' is unused
20 |                 // Carry over ac:width as width attribute
21 |                 let width = (try? acImage.attr("ac:width")) ?? ""
22 |                 if !width.isEmpty { try? img.attr("width", width) }
   |                                     `- warning: result of 'try?' is unused
23 |
24 |                 try? acImage.replaceWith(img)
/host/spi-builder-workspace/Sources/plugin/atlassian/atlassian_render_attachments.swift:44:17: warning: result of 'try?' is unused
42 |
43 |                 guard let a = try? Element(Tag.valueOf("a"), "") else { continue }
44 |                 try? a.attr("href", filename)
   |                 `- warning: result of 'try?' is unused
45 |                 try? a.text(label)
46 |                 try? acLink.replaceWith(a)
/host/spi-builder-workspace/Sources/plugin/atlassian/atlassian_render_attachments.swift:45:17: warning: result of 'try?' is unused
43 |                 guard let a = try? Element(Tag.valueOf("a"), "") else { continue }
44 |                 try? a.attr("href", filename)
45 |                 try? a.text(label)
   |                 `- warning: result of 'try?' is unused
46 |                 try? acLink.replaceWith(a)
47 |             }
/host/spi-builder-workspace/Sources/plugin/atlassian/atlassian_render_code_blocks.swift:23:40: warning: result of 'try?' is unused
21 |                 guard let pre = try? Element(Tag.valueOf("pre"), ""),
22 |                       let code = try? Element(Tag.valueOf("code"), "") else { continue }
23 |                 if !language.isEmpty { try? code.attr("class", "language-\(language)") }
   |                                        `- warning: result of 'try?' is unused
24 |                 try? code.text(codeText)
25 |                 try? pre.appendChild(code)
/host/spi-builder-workspace/Sources/plugin/atlassian/atlassian_render_code_blocks.swift:24:17: warning: result of 'try?' is unused
22 |                       let code = try? Element(Tag.valueOf("code"), "") else { continue }
23 |                 if !language.isEmpty { try? code.attr("class", "language-\(language)") }
24 |                 try? code.text(codeText)
   |                 `- warning: result of 'try?' is unused
25 |                 try? pre.appendChild(code)
26 |                 try? macro.replaceWith(pre)
/host/spi-builder-workspace/Sources/plugin/atlassian/atlassian_render_code_blocks.swift:25:17: warning: result of 'try?' is unused
23 |                 if !language.isEmpty { try? code.attr("class", "language-\(language)") }
24 |                 try? code.text(codeText)
25 |                 try? pre.appendChild(code)
   |                 `- warning: result of 'try?' is unused
26 |                 try? macro.replaceWith(pre)
27 |             }
[166/184] Compiling HTMLToMarkdown atlassian_render_attachments.swift
/host/spi-builder-workspace/Sources/plugin/atlassian/atlassian_render_attachments.swift:17:17: warning: result of 'try?' is unused
15 |
16 |                 guard let img = try? Element(Tag.valueOf("img"), "") else { continue }
17 |                 try? img.attr("src", filename)
   |                 `- warning: result of 'try?' is unused
18 |                 try? img.attr("alt", filename)
19 |
/host/spi-builder-workspace/Sources/plugin/atlassian/atlassian_render_attachments.swift:18:17: warning: result of 'try?' is unused
16 |                 guard let img = try? Element(Tag.valueOf("img"), "") else { continue }
17 |                 try? img.attr("src", filename)
18 |                 try? img.attr("alt", filename)
   |                 `- warning: result of 'try?' is unused
19 |
20 |                 // Carry over ac:width as width attribute
/host/spi-builder-workspace/Sources/plugin/atlassian/atlassian_render_attachments.swift:22:37: warning: result of 'try?' is unused
20 |                 // Carry over ac:width as width attribute
21 |                 let width = (try? acImage.attr("ac:width")) ?? ""
22 |                 if !width.isEmpty { try? img.attr("width", width) }
   |                                     `- warning: result of 'try?' is unused
23 |
24 |                 try? acImage.replaceWith(img)
/host/spi-builder-workspace/Sources/plugin/atlassian/atlassian_render_attachments.swift:44:17: warning: result of 'try?' is unused
42 |
43 |                 guard let a = try? Element(Tag.valueOf("a"), "") else { continue }
44 |                 try? a.attr("href", filename)
   |                 `- warning: result of 'try?' is unused
45 |                 try? a.text(label)
46 |                 try? acLink.replaceWith(a)
/host/spi-builder-workspace/Sources/plugin/atlassian/atlassian_render_attachments.swift:45:17: warning: result of 'try?' is unused
43 |                 guard let a = try? Element(Tag.valueOf("a"), "") else { continue }
44 |                 try? a.attr("href", filename)
45 |                 try? a.text(label)
   |                 `- warning: result of 'try?' is unused
46 |                 try? acLink.replaceWith(a)
47 |             }
/host/spi-builder-workspace/Sources/plugin/atlassian/atlassian_render_code_blocks.swift:23:40: warning: result of 'try?' is unused
21 |                 guard let pre = try? Element(Tag.valueOf("pre"), ""),
22 |                       let code = try? Element(Tag.valueOf("code"), "") else { continue }
23 |                 if !language.isEmpty { try? code.attr("class", "language-\(language)") }
   |                                        `- warning: result of 'try?' is unused
24 |                 try? code.text(codeText)
25 |                 try? pre.appendChild(code)
/host/spi-builder-workspace/Sources/plugin/atlassian/atlassian_render_code_blocks.swift:24:17: warning: result of 'try?' is unused
22 |                       let code = try? Element(Tag.valueOf("code"), "") else { continue }
23 |                 if !language.isEmpty { try? code.attr("class", "language-\(language)") }
24 |                 try? code.text(codeText)
   |                 `- warning: result of 'try?' is unused
25 |                 try? pre.appendChild(code)
26 |                 try? macro.replaceWith(pre)
/host/spi-builder-workspace/Sources/plugin/atlassian/atlassian_render_code_blocks.swift:25:17: warning: result of 'try?' is unused
23 |                 if !language.isEmpty { try? code.attr("class", "language-\(language)") }
24 |                 try? code.text(codeText)
25 |                 try? pre.appendChild(code)
   |                 `- warning: result of 'try?' is unused
26 |                 try? macro.replaceWith(pre)
27 |             }
[167/184] Compiling HTMLToMarkdown atlassian_render_autolinks.swift
/host/spi-builder-workspace/Sources/plugin/atlassian/atlassian_render_attachments.swift:17:17: warning: result of 'try?' is unused
15 |
16 |                 guard let img = try? Element(Tag.valueOf("img"), "") else { continue }
17 |                 try? img.attr("src", filename)
   |                 `- warning: result of 'try?' is unused
18 |                 try? img.attr("alt", filename)
19 |
/host/spi-builder-workspace/Sources/plugin/atlassian/atlassian_render_attachments.swift:18:17: warning: result of 'try?' is unused
16 |                 guard let img = try? Element(Tag.valueOf("img"), "") else { continue }
17 |                 try? img.attr("src", filename)
18 |                 try? img.attr("alt", filename)
   |                 `- warning: result of 'try?' is unused
19 |
20 |                 // Carry over ac:width as width attribute
/host/spi-builder-workspace/Sources/plugin/atlassian/atlassian_render_attachments.swift:22:37: warning: result of 'try?' is unused
20 |                 // Carry over ac:width as width attribute
21 |                 let width = (try? acImage.attr("ac:width")) ?? ""
22 |                 if !width.isEmpty { try? img.attr("width", width) }
   |                                     `- warning: result of 'try?' is unused
23 |
24 |                 try? acImage.replaceWith(img)
/host/spi-builder-workspace/Sources/plugin/atlassian/atlassian_render_attachments.swift:44:17: warning: result of 'try?' is unused
42 |
43 |                 guard let a = try? Element(Tag.valueOf("a"), "") else { continue }
44 |                 try? a.attr("href", filename)
   |                 `- warning: result of 'try?' is unused
45 |                 try? a.text(label)
46 |                 try? acLink.replaceWith(a)
/host/spi-builder-workspace/Sources/plugin/atlassian/atlassian_render_attachments.swift:45:17: warning: result of 'try?' is unused
43 |                 guard let a = try? Element(Tag.valueOf("a"), "") else { continue }
44 |                 try? a.attr("href", filename)
45 |                 try? a.text(label)
   |                 `- warning: result of 'try?' is unused
46 |                 try? acLink.replaceWith(a)
47 |             }
/host/spi-builder-workspace/Sources/plugin/atlassian/atlassian_render_code_blocks.swift:23:40: warning: result of 'try?' is unused
21 |                 guard let pre = try? Element(Tag.valueOf("pre"), ""),
22 |                       let code = try? Element(Tag.valueOf("code"), "") else { continue }
23 |                 if !language.isEmpty { try? code.attr("class", "language-\(language)") }
   |                                        `- warning: result of 'try?' is unused
24 |                 try? code.text(codeText)
25 |                 try? pre.appendChild(code)
/host/spi-builder-workspace/Sources/plugin/atlassian/atlassian_render_code_blocks.swift:24:17: warning: result of 'try?' is unused
22 |                       let code = try? Element(Tag.valueOf("code"), "") else { continue }
23 |                 if !language.isEmpty { try? code.attr("class", "language-\(language)") }
24 |                 try? code.text(codeText)
   |                 `- warning: result of 'try?' is unused
25 |                 try? pre.appendChild(code)
26 |                 try? macro.replaceWith(pre)
/host/spi-builder-workspace/Sources/plugin/atlassian/atlassian_render_code_blocks.swift:25:17: warning: result of 'try?' is unused
23 |                 if !language.isEmpty { try? code.attr("class", "language-\(language)") }
24 |                 try? code.text(codeText)
25 |                 try? pre.appendChild(code)
   |                 `- warning: result of 'try?' is unused
26 |                 try? macro.replaceWith(pre)
27 |             }
[168/184] Compiling HTMLToMarkdown atlassian_render_code_blocks.swift
/host/spi-builder-workspace/Sources/plugin/atlassian/atlassian_render_attachments.swift:17:17: warning: result of 'try?' is unused
15 |
16 |                 guard let img = try? Element(Tag.valueOf("img"), "") else { continue }
17 |                 try? img.attr("src", filename)
   |                 `- warning: result of 'try?' is unused
18 |                 try? img.attr("alt", filename)
19 |
/host/spi-builder-workspace/Sources/plugin/atlassian/atlassian_render_attachments.swift:18:17: warning: result of 'try?' is unused
16 |                 guard let img = try? Element(Tag.valueOf("img"), "") else { continue }
17 |                 try? img.attr("src", filename)
18 |                 try? img.attr("alt", filename)
   |                 `- warning: result of 'try?' is unused
19 |
20 |                 // Carry over ac:width as width attribute
/host/spi-builder-workspace/Sources/plugin/atlassian/atlassian_render_attachments.swift:22:37: warning: result of 'try?' is unused
20 |                 // Carry over ac:width as width attribute
21 |                 let width = (try? acImage.attr("ac:width")) ?? ""
22 |                 if !width.isEmpty { try? img.attr("width", width) }
   |                                     `- warning: result of 'try?' is unused
23 |
24 |                 try? acImage.replaceWith(img)
/host/spi-builder-workspace/Sources/plugin/atlassian/atlassian_render_attachments.swift:44:17: warning: result of 'try?' is unused
42 |
43 |                 guard let a = try? Element(Tag.valueOf("a"), "") else { continue }
44 |                 try? a.attr("href", filename)
   |                 `- warning: result of 'try?' is unused
45 |                 try? a.text(label)
46 |                 try? acLink.replaceWith(a)
/host/spi-builder-workspace/Sources/plugin/atlassian/atlassian_render_attachments.swift:45:17: warning: result of 'try?' is unused
43 |                 guard let a = try? Element(Tag.valueOf("a"), "") else { continue }
44 |                 try? a.attr("href", filename)
45 |                 try? a.text(label)
   |                 `- warning: result of 'try?' is unused
46 |                 try? acLink.replaceWith(a)
47 |             }
/host/spi-builder-workspace/Sources/plugin/atlassian/atlassian_render_code_blocks.swift:23:40: warning: result of 'try?' is unused
21 |                 guard let pre = try? Element(Tag.valueOf("pre"), ""),
22 |                       let code = try? Element(Tag.valueOf("code"), "") else { continue }
23 |                 if !language.isEmpty { try? code.attr("class", "language-\(language)") }
   |                                        `- warning: result of 'try?' is unused
24 |                 try? code.text(codeText)
25 |                 try? pre.appendChild(code)
/host/spi-builder-workspace/Sources/plugin/atlassian/atlassian_render_code_blocks.swift:24:17: warning: result of 'try?' is unused
22 |                       let code = try? Element(Tag.valueOf("code"), "") else { continue }
23 |                 if !language.isEmpty { try? code.attr("class", "language-\(language)") }
24 |                 try? code.text(codeText)
   |                 `- warning: result of 'try?' is unused
25 |                 try? pre.appendChild(code)
26 |                 try? macro.replaceWith(pre)
/host/spi-builder-workspace/Sources/plugin/atlassian/atlassian_render_code_blocks.swift:25:17: warning: result of 'try?' is unused
23 |                 if !language.isEmpty { try? code.attr("class", "language-\(language)") }
24 |                 try? code.text(codeText)
25 |                 try? pre.appendChild(code)
   |                 `- warning: result of 'try?' is unused
26 |                 try? macro.replaceWith(pre)
27 |             }
[169/184] Compiling HTMLToMarkdown atlassian_render_image_sizing.swift
/host/spi-builder-workspace/Sources/plugin/atlassian/atlassian_render_attachments.swift:17:17: warning: result of 'try?' is unused
15 |
16 |                 guard let img = try? Element(Tag.valueOf("img"), "") else { continue }
17 |                 try? img.attr("src", filename)
   |                 `- warning: result of 'try?' is unused
18 |                 try? img.attr("alt", filename)
19 |
/host/spi-builder-workspace/Sources/plugin/atlassian/atlassian_render_attachments.swift:18:17: warning: result of 'try?' is unused
16 |                 guard let img = try? Element(Tag.valueOf("img"), "") else { continue }
17 |                 try? img.attr("src", filename)
18 |                 try? img.attr("alt", filename)
   |                 `- warning: result of 'try?' is unused
19 |
20 |                 // Carry over ac:width as width attribute
/host/spi-builder-workspace/Sources/plugin/atlassian/atlassian_render_attachments.swift:22:37: warning: result of 'try?' is unused
20 |                 // Carry over ac:width as width attribute
21 |                 let width = (try? acImage.attr("ac:width")) ?? ""
22 |                 if !width.isEmpty { try? img.attr("width", width) }
   |                                     `- warning: result of 'try?' is unused
23 |
24 |                 try? acImage.replaceWith(img)
/host/spi-builder-workspace/Sources/plugin/atlassian/atlassian_render_attachments.swift:44:17: warning: result of 'try?' is unused
42 |
43 |                 guard let a = try? Element(Tag.valueOf("a"), "") else { continue }
44 |                 try? a.attr("href", filename)
   |                 `- warning: result of 'try?' is unused
45 |                 try? a.text(label)
46 |                 try? acLink.replaceWith(a)
/host/spi-builder-workspace/Sources/plugin/atlassian/atlassian_render_attachments.swift:45:17: warning: result of 'try?' is unused
43 |                 guard let a = try? Element(Tag.valueOf("a"), "") else { continue }
44 |                 try? a.attr("href", filename)
45 |                 try? a.text(label)
   |                 `- warning: result of 'try?' is unused
46 |                 try? acLink.replaceWith(a)
47 |             }
/host/spi-builder-workspace/Sources/plugin/atlassian/atlassian_render_code_blocks.swift:23:40: warning: result of 'try?' is unused
21 |                 guard let pre = try? Element(Tag.valueOf("pre"), ""),
22 |                       let code = try? Element(Tag.valueOf("code"), "") else { continue }
23 |                 if !language.isEmpty { try? code.attr("class", "language-\(language)") }
   |                                        `- warning: result of 'try?' is unused
24 |                 try? code.text(codeText)
25 |                 try? pre.appendChild(code)
/host/spi-builder-workspace/Sources/plugin/atlassian/atlassian_render_code_blocks.swift:24:17: warning: result of 'try?' is unused
22 |                       let code = try? Element(Tag.valueOf("code"), "") else { continue }
23 |                 if !language.isEmpty { try? code.attr("class", "language-\(language)") }
24 |                 try? code.text(codeText)
   |                 `- warning: result of 'try?' is unused
25 |                 try? pre.appendChild(code)
26 |                 try? macro.replaceWith(pre)
/host/spi-builder-workspace/Sources/plugin/atlassian/atlassian_render_code_blocks.swift:25:17: warning: result of 'try?' is unused
23 |                 if !language.isEmpty { try? code.attr("class", "language-\(language)") }
24 |                 try? code.text(codeText)
25 |                 try? pre.appendChild(code)
   |                 `- warning: result of 'try?' is unused
26 |                 try? macro.replaceWith(pre)
27 |             }
[170/184] Compiling HTMLToMarkdown base.swift
/host/spi-builder-workspace/Sources/plugin/atlassian/atlassian_render_attachments.swift:17:17: warning: result of 'try?' is unused
15 |
16 |                 guard let img = try? Element(Tag.valueOf("img"), "") else { continue }
17 |                 try? img.attr("src", filename)
   |                 `- warning: result of 'try?' is unused
18 |                 try? img.attr("alt", filename)
19 |
/host/spi-builder-workspace/Sources/plugin/atlassian/atlassian_render_attachments.swift:18:17: warning: result of 'try?' is unused
16 |                 guard let img = try? Element(Tag.valueOf("img"), "") else { continue }
17 |                 try? img.attr("src", filename)
18 |                 try? img.attr("alt", filename)
   |                 `- warning: result of 'try?' is unused
19 |
20 |                 // Carry over ac:width as width attribute
/host/spi-builder-workspace/Sources/plugin/atlassian/atlassian_render_attachments.swift:22:37: warning: result of 'try?' is unused
20 |                 // Carry over ac:width as width attribute
21 |                 let width = (try? acImage.attr("ac:width")) ?? ""
22 |                 if !width.isEmpty { try? img.attr("width", width) }
   |                                     `- warning: result of 'try?' is unused
23 |
24 |                 try? acImage.replaceWith(img)
/host/spi-builder-workspace/Sources/plugin/atlassian/atlassian_render_attachments.swift:44:17: warning: result of 'try?' is unused
42 |
43 |                 guard let a = try? Element(Tag.valueOf("a"), "") else { continue }
44 |                 try? a.attr("href", filename)
   |                 `- warning: result of 'try?' is unused
45 |                 try? a.text(label)
46 |                 try? acLink.replaceWith(a)
/host/spi-builder-workspace/Sources/plugin/atlassian/atlassian_render_attachments.swift:45:17: warning: result of 'try?' is unused
43 |                 guard let a = try? Element(Tag.valueOf("a"), "") else { continue }
44 |                 try? a.attr("href", filename)
45 |                 try? a.text(label)
   |                 `- warning: result of 'try?' is unused
46 |                 try? acLink.replaceWith(a)
47 |             }
/host/spi-builder-workspace/Sources/plugin/atlassian/atlassian_render_code_blocks.swift:23:40: warning: result of 'try?' is unused
21 |                 guard let pre = try? Element(Tag.valueOf("pre"), ""),
22 |                       let code = try? Element(Tag.valueOf("code"), "") else { continue }
23 |                 if !language.isEmpty { try? code.attr("class", "language-\(language)") }
   |                                        `- warning: result of 'try?' is unused
24 |                 try? code.text(codeText)
25 |                 try? pre.appendChild(code)
/host/spi-builder-workspace/Sources/plugin/atlassian/atlassian_render_code_blocks.swift:24:17: warning: result of 'try?' is unused
22 |                       let code = try? Element(Tag.valueOf("code"), "") else { continue }
23 |                 if !language.isEmpty { try? code.attr("class", "language-\(language)") }
24 |                 try? code.text(codeText)
   |                 `- warning: result of 'try?' is unused
25 |                 try? pre.appendChild(code)
26 |                 try? macro.replaceWith(pre)
/host/spi-builder-workspace/Sources/plugin/atlassian/atlassian_render_code_blocks.swift:25:17: warning: result of 'try?' is unused
23 |                 if !language.isEmpty { try? code.attr("class", "language-\(language)") }
24 |                 try? code.text(codeText)
25 |                 try? pre.appendChild(code)
   |                 `- warning: result of 'try?' is unused
26 |                 try? macro.replaceWith(pre)
27 |             }
[171/184] Compiling HTMLToMarkdown renderers.swift
/host/spi-builder-workspace/Sources/plugin/atlassian/atlassian_render_attachments.swift:17:17: warning: result of 'try?' is unused
15 |
16 |                 guard let img = try? Element(Tag.valueOf("img"), "") else { continue }
17 |                 try? img.attr("src", filename)
   |                 `- warning: result of 'try?' is unused
18 |                 try? img.attr("alt", filename)
19 |
/host/spi-builder-workspace/Sources/plugin/atlassian/atlassian_render_attachments.swift:18:17: warning: result of 'try?' is unused
16 |                 guard let img = try? Element(Tag.valueOf("img"), "") else { continue }
17 |                 try? img.attr("src", filename)
18 |                 try? img.attr("alt", filename)
   |                 `- warning: result of 'try?' is unused
19 |
20 |                 // Carry over ac:width as width attribute
/host/spi-builder-workspace/Sources/plugin/atlassian/atlassian_render_attachments.swift:22:37: warning: result of 'try?' is unused
20 |                 // Carry over ac:width as width attribute
21 |                 let width = (try? acImage.attr("ac:width")) ?? ""
22 |                 if !width.isEmpty { try? img.attr("width", width) }
   |                                     `- warning: result of 'try?' is unused
23 |
24 |                 try? acImage.replaceWith(img)
/host/spi-builder-workspace/Sources/plugin/atlassian/atlassian_render_attachments.swift:44:17: warning: result of 'try?' is unused
42 |
43 |                 guard let a = try? Element(Tag.valueOf("a"), "") else { continue }
44 |                 try? a.attr("href", filename)
   |                 `- warning: result of 'try?' is unused
45 |                 try? a.text(label)
46 |                 try? acLink.replaceWith(a)
/host/spi-builder-workspace/Sources/plugin/atlassian/atlassian_render_attachments.swift:45:17: warning: result of 'try?' is unused
43 |                 guard let a = try? Element(Tag.valueOf("a"), "") else { continue }
44 |                 try? a.attr("href", filename)
45 |                 try? a.text(label)
   |                 `- warning: result of 'try?' is unused
46 |                 try? acLink.replaceWith(a)
47 |             }
/host/spi-builder-workspace/Sources/plugin/atlassian/atlassian_render_code_blocks.swift:23:40: warning: result of 'try?' is unused
21 |                 guard let pre = try? Element(Tag.valueOf("pre"), ""),
22 |                       let code = try? Element(Tag.valueOf("code"), "") else { continue }
23 |                 if !language.isEmpty { try? code.attr("class", "language-\(language)") }
   |                                        `- warning: result of 'try?' is unused
24 |                 try? code.text(codeText)
25 |                 try? pre.appendChild(code)
/host/spi-builder-workspace/Sources/plugin/atlassian/atlassian_render_code_blocks.swift:24:17: warning: result of 'try?' is unused
22 |                       let code = try? Element(Tag.valueOf("code"), "") else { continue }
23 |                 if !language.isEmpty { try? code.attr("class", "language-\(language)") }
24 |                 try? code.text(codeText)
   |                 `- warning: result of 'try?' is unused
25 |                 try? pre.appendChild(code)
26 |                 try? macro.replaceWith(pre)
/host/spi-builder-workspace/Sources/plugin/atlassian/atlassian_render_code_blocks.swift:25:17: warning: result of 'try?' is unused
23 |                 if !language.isEmpty { try? code.attr("class", "language-\(language)") }
24 |                 try? code.text(codeText)
25 |                 try? pre.appendChild(code)
   |                 `- warning: result of 'try?' is unused
26 |                 try? macro.replaceWith(pre)
27 |             }
[172/184] Compiling HTMLToMarkdown commonmark.swift
/host/spi-builder-workspace/Sources/plugin/atlassian/atlassian_render_attachments.swift:17:17: warning: result of 'try?' is unused
15 |
16 |                 guard let img = try? Element(Tag.valueOf("img"), "") else { continue }
17 |                 try? img.attr("src", filename)
   |                 `- warning: result of 'try?' is unused
18 |                 try? img.attr("alt", filename)
19 |
/host/spi-builder-workspace/Sources/plugin/atlassian/atlassian_render_attachments.swift:18:17: warning: result of 'try?' is unused
16 |                 guard let img = try? Element(Tag.valueOf("img"), "") else { continue }
17 |                 try? img.attr("src", filename)
18 |                 try? img.attr("alt", filename)
   |                 `- warning: result of 'try?' is unused
19 |
20 |                 // Carry over ac:width as width attribute
/host/spi-builder-workspace/Sources/plugin/atlassian/atlassian_render_attachments.swift:22:37: warning: result of 'try?' is unused
20 |                 // Carry over ac:width as width attribute
21 |                 let width = (try? acImage.attr("ac:width")) ?? ""
22 |                 if !width.isEmpty { try? img.attr("width", width) }
   |                                     `- warning: result of 'try?' is unused
23 |
24 |                 try? acImage.replaceWith(img)
/host/spi-builder-workspace/Sources/plugin/atlassian/atlassian_render_attachments.swift:44:17: warning: result of 'try?' is unused
42 |
43 |                 guard let a = try? Element(Tag.valueOf("a"), "") else { continue }
44 |                 try? a.attr("href", filename)
   |                 `- warning: result of 'try?' is unused
45 |                 try? a.text(label)
46 |                 try? acLink.replaceWith(a)
/host/spi-builder-workspace/Sources/plugin/atlassian/atlassian_render_attachments.swift:45:17: warning: result of 'try?' is unused
43 |                 guard let a = try? Element(Tag.valueOf("a"), "") else { continue }
44 |                 try? a.attr("href", filename)
45 |                 try? a.text(label)
   |                 `- warning: result of 'try?' is unused
46 |                 try? acLink.replaceWith(a)
47 |             }
/host/spi-builder-workspace/Sources/plugin/atlassian/atlassian_render_code_blocks.swift:23:40: warning: result of 'try?' is unused
21 |                 guard let pre = try? Element(Tag.valueOf("pre"), ""),
22 |                       let code = try? Element(Tag.valueOf("code"), "") else { continue }
23 |                 if !language.isEmpty { try? code.attr("class", "language-\(language)") }
   |                                        `- warning: result of 'try?' is unused
24 |                 try? code.text(codeText)
25 |                 try? pre.appendChild(code)
/host/spi-builder-workspace/Sources/plugin/atlassian/atlassian_render_code_blocks.swift:24:17: warning: result of 'try?' is unused
22 |                       let code = try? Element(Tag.valueOf("code"), "") else { continue }
23 |                 if !language.isEmpty { try? code.attr("class", "language-\(language)") }
24 |                 try? code.text(codeText)
   |                 `- warning: result of 'try?' is unused
25 |                 try? pre.appendChild(code)
26 |                 try? macro.replaceWith(pre)
/host/spi-builder-workspace/Sources/plugin/atlassian/atlassian_render_code_blocks.swift:25:17: warning: result of 'try?' is unused
23 |                 if !language.isEmpty { try? code.attr("class", "language-\(language)") }
24 |                 try? code.text(codeText)
25 |                 try? pre.appendChild(code)
   |                 `- warning: result of 'try?' is unused
26 |                 try? macro.replaceWith(pre)
27 |             }
[173/184] Compiling HTMLToMarkdown url_utils.swift
/host/spi-builder-workspace/Sources/plugin/commonmark/validation.swift:5:14: warning: non-final class 'ValidateConfigError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 3 | /// Error thrown when CommonmarkOptions has invalid values.
 4 | /// Fields match Go's ValidateConfigError struct exactly.
 5 | public class ValidateConfigError: Error, LocalizedError {
   |              `- warning: non-final class 'ValidateConfigError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 6 |     public let Key: String
 7 |     public let Value: String
/host/spi-builder-workspace/Sources/plugin/commonmark/validation.swift:10:16: warning: stored property 'KeyWithValue' of 'Sendable'-conforming class 'ValidateConfigError' is mutable; this is an error in the Swift 6 language mode
 8 |     /// Override the default "Key:\"Value\"" format used in the error message.
 9 |     /// Matches Go's KeyWithValue field, e.g. for CLI formatting: "--key=value"
10 |     public var KeyWithValue: String = ""
   |                `- warning: stored property 'KeyWithValue' of 'Sendable'-conforming class 'ValidateConfigError' is mutable; this is an error in the Swift 6 language mode
11 |     let patternDescription: String
12 |
[174/184] Compiling HTMLToMarkdown validation.swift
/host/spi-builder-workspace/Sources/plugin/commonmark/validation.swift:5:14: warning: non-final class 'ValidateConfigError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 3 | /// Error thrown when CommonmarkOptions has invalid values.
 4 | /// Fields match Go's ValidateConfigError struct exactly.
 5 | public class ValidateConfigError: Error, LocalizedError {
   |              `- warning: non-final class 'ValidateConfigError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 6 |     public let Key: String
 7 |     public let Value: String
/host/spi-builder-workspace/Sources/plugin/commonmark/validation.swift:10:16: warning: stored property 'KeyWithValue' of 'Sendable'-conforming class 'ValidateConfigError' is mutable; this is an error in the Swift 6 language mode
 8 |     /// Override the default "Key:\"Value\"" format used in the error message.
 9 |     /// Matches Go's KeyWithValue field, e.g. for CLI formatting: "--key=value"
10 |     public var KeyWithValue: String = ""
   |                `- warning: stored property 'KeyWithValue' of 'Sendable'-conforming class 'ValidateConfigError' is mutable; this is an error in the Swift 6 language mode
11 |     let patternDescription: String
12 |
[175/184] Compiling HTMLToMarkdown emoji.swift
/host/spi-builder-workspace/Sources/plugin/commonmark/validation.swift:5:14: warning: non-final class 'ValidateConfigError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 3 | /// Error thrown when CommonmarkOptions has invalid values.
 4 | /// Fields match Go's ValidateConfigError struct exactly.
 5 | public class ValidateConfigError: Error, LocalizedError {
   |              `- warning: non-final class 'ValidateConfigError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 6 |     public let Key: String
 7 |     public let Value: String
/host/spi-builder-workspace/Sources/plugin/commonmark/validation.swift:10:16: warning: stored property 'KeyWithValue' of 'Sendable'-conforming class 'ValidateConfigError' is mutable; this is an error in the Swift 6 language mode
 8 |     /// Override the default "Key:\"Value\"" format used in the error message.
 9 |     /// Matches Go's KeyWithValue field, e.g. for CLI formatting: "--key=value"
10 |     public var KeyWithValue: String = ""
   |                `- warning: stored property 'KeyWithValue' of 'Sendable'-conforming class 'ValidateConfigError' is mutable; this is an error in the Swift 6 language mode
11 |     let patternDescription: String
12 |
[176/184] Compiling HTMLToMarkdown emoji_render.swift
/host/spi-builder-workspace/Sources/plugin/commonmark/validation.swift:5:14: warning: non-final class 'ValidateConfigError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 3 | /// Error thrown when CommonmarkOptions has invalid values.
 4 | /// Fields match Go's ValidateConfigError struct exactly.
 5 | public class ValidateConfigError: Error, LocalizedError {
   |              `- warning: non-final class 'ValidateConfigError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 6 |     public let Key: String
 7 |     public let Value: String
/host/spi-builder-workspace/Sources/plugin/commonmark/validation.swift:10:16: warning: stored property 'KeyWithValue' of 'Sendable'-conforming class 'ValidateConfigError' is mutable; this is an error in the Swift 6 language mode
 8 |     /// Override the default "Key:\"Value\"" format used in the error message.
 9 |     /// Matches Go's KeyWithValue field, e.g. for CLI formatting: "--key=value"
10 |     public var KeyWithValue: String = ""
   |                `- warning: stored property 'KeyWithValue' of 'Sendable'-conforming class 'ValidateConfigError' is mutable; this is an error in the Swift 6 language mode
11 |     let patternDescription: String
12 |
[177/184] Compiling HTMLToMarkdown emoji_table.swift
/host/spi-builder-workspace/Sources/plugin/commonmark/validation.swift:5:14: warning: non-final class 'ValidateConfigError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 3 | /// Error thrown when CommonmarkOptions has invalid values.
 4 | /// Fields match Go's ValidateConfigError struct exactly.
 5 | public class ValidateConfigError: Error, LocalizedError {
   |              `- warning: non-final class 'ValidateConfigError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 6 |     public let Key: String
 7 |     public let Value: String
/host/spi-builder-workspace/Sources/plugin/commonmark/validation.swift:10:16: warning: stored property 'KeyWithValue' of 'Sendable'-conforming class 'ValidateConfigError' is mutable; this is an error in the Swift 6 language mode
 8 |     /// Override the default "Key:\"Value\"" format used in the error message.
 9 |     /// Matches Go's KeyWithValue field, e.g. for CLI formatting: "--key=value"
10 |     public var KeyWithValue: String = ""
   |                `- warning: stored property 'KeyWithValue' of 'Sendable'-conforming class 'ValidateConfigError' is mutable; this is an error in the Swift 6 language mode
11 |     let patternDescription: String
12 |
[178/184] Compiling HTMLToMarkdown frontmatter.swift
/host/spi-builder-workspace/Sources/plugin/commonmark/validation.swift:5:14: warning: non-final class 'ValidateConfigError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 3 | /// Error thrown when CommonmarkOptions has invalid values.
 4 | /// Fields match Go's ValidateConfigError struct exactly.
 5 | public class ValidateConfigError: Error, LocalizedError {
   |              `- warning: non-final class 'ValidateConfigError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 6 |     public let Key: String
 7 |     public let Value: String
/host/spi-builder-workspace/Sources/plugin/commonmark/validation.swift:10:16: warning: stored property 'KeyWithValue' of 'Sendable'-conforming class 'ValidateConfigError' is mutable; this is an error in the Swift 6 language mode
 8 |     /// Override the default "Key:\"Value\"" format used in the error message.
 9 |     /// Matches Go's KeyWithValue field, e.g. for CLI formatting: "--key=value"
10 |     public var KeyWithValue: String = ""
   |                `- warning: stored property 'KeyWithValue' of 'Sendable'-conforming class 'ValidateConfigError' is mutable; this is an error in the Swift 6 language mode
11 |     let patternDescription: String
12 |
[179/184] Compiling HTMLToMarkdown gfm.swift
/host/spi-builder-workspace/Sources/plugin/commonmark/validation.swift:5:14: warning: non-final class 'ValidateConfigError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 3 | /// Error thrown when CommonmarkOptions has invalid values.
 4 | /// Fields match Go's ValidateConfigError struct exactly.
 5 | public class ValidateConfigError: Error, LocalizedError {
   |              `- warning: non-final class 'ValidateConfigError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 6 |     public let Key: String
 7 |     public let Value: String
/host/spi-builder-workspace/Sources/plugin/commonmark/validation.swift:10:16: warning: stored property 'KeyWithValue' of 'Sendable'-conforming class 'ValidateConfigError' is mutable; this is an error in the Swift 6 language mode
 8 |     /// Override the default "Key:\"Value\"" format used in the error message.
 9 |     /// Matches Go's KeyWithValue field, e.g. for CLI formatting: "--key=value"
10 |     public var KeyWithValue: String = ""
   |                `- warning: stored property 'KeyWithValue' of 'Sendable'-conforming class 'ValidateConfigError' is mutable; this is an error in the Swift 6 language mode
11 |     let patternDescription: String
12 |
[180/184] Compiling HTMLToMarkdown gfm_render_abbr.swift
/host/spi-builder-workspace/Sources/plugin/commonmark/validation.swift:5:14: warning: non-final class 'ValidateConfigError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 3 | /// Error thrown when CommonmarkOptions has invalid values.
 4 | /// Fields match Go's ValidateConfigError struct exactly.
 5 | public class ValidateConfigError: Error, LocalizedError {
   |              `- warning: non-final class 'ValidateConfigError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 6 |     public let Key: String
 7 |     public let Value: String
/host/spi-builder-workspace/Sources/plugin/commonmark/validation.swift:10:16: warning: stored property 'KeyWithValue' of 'Sendable'-conforming class 'ValidateConfigError' is mutable; this is an error in the Swift 6 language mode
 8 |     /// Override the default "Key:\"Value\"" format used in the error message.
 9 |     /// Matches Go's KeyWithValue field, e.g. for CLI formatting: "--key=value"
10 |     public var KeyWithValue: String = ""
   |                `- warning: stored property 'KeyWithValue' of 'Sendable'-conforming class 'ValidateConfigError' is mutable; this is an error in the Swift 6 language mode
11 |     let patternDescription: String
12 |
[181/184] Compiling HTMLToMarkdown gfm_render_definition_lists.swift
/host/spi-builder-workspace/Sources/plugin/commonmark/validation.swift:5:14: warning: non-final class 'ValidateConfigError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 3 | /// Error thrown when CommonmarkOptions has invalid values.
 4 | /// Fields match Go's ValidateConfigError struct exactly.
 5 | public class ValidateConfigError: Error, LocalizedError {
   |              `- warning: non-final class 'ValidateConfigError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 6 |     public let Key: String
 7 |     public let Value: String
/host/spi-builder-workspace/Sources/plugin/commonmark/validation.swift:10:16: warning: stored property 'KeyWithValue' of 'Sendable'-conforming class 'ValidateConfigError' is mutable; this is an error in the Swift 6 language mode
 8 |     /// Override the default "Key:\"Value\"" format used in the error message.
 9 |     /// Matches Go's KeyWithValue field, e.g. for CLI formatting: "--key=value"
10 |     public var KeyWithValue: String = ""
   |                `- warning: stored property 'KeyWithValue' of 'Sendable'-conforming class 'ValidateConfigError' is mutable; this is an error in the Swift 6 language mode
11 |     let patternDescription: String
12 |
[182/184] Compiling HTMLToMarkdown gfm_render_details_summary.swift
/host/spi-builder-workspace/Sources/plugin/commonmark/validation.swift:5:14: warning: non-final class 'ValidateConfigError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 3 | /// Error thrown when CommonmarkOptions has invalid values.
 4 | /// Fields match Go's ValidateConfigError struct exactly.
 5 | public class ValidateConfigError: Error, LocalizedError {
   |              `- warning: non-final class 'ValidateConfigError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 6 |     public let Key: String
 7 |     public let Value: String
/host/spi-builder-workspace/Sources/plugin/commonmark/validation.swift:10:16: warning: stored property 'KeyWithValue' of 'Sendable'-conforming class 'ValidateConfigError' is mutable; this is an error in the Swift 6 language mode
 8 |     /// Override the default "Key:\"Value\"" format used in the error message.
 9 |     /// Matches Go's KeyWithValue field, e.g. for CLI formatting: "--key=value"
10 |     public var KeyWithValue: String = ""
   |                `- warning: stored property 'KeyWithValue' of 'Sendable'-conforming class 'ValidateConfigError' is mutable; this is an error in the Swift 6 language mode
11 |     let patternDescription: String
12 |
[183/184] Compiling HTMLToMarkdown gfm_render_sub_sup.swift
/host/spi-builder-workspace/Sources/plugin/commonmark/validation.swift:5:14: warning: non-final class 'ValidateConfigError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 3 | /// Error thrown when CommonmarkOptions has invalid values.
 4 | /// Fields match Go's ValidateConfigError struct exactly.
 5 | public class ValidateConfigError: Error, LocalizedError {
   |              `- warning: non-final class 'ValidateConfigError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 6 |     public let Key: String
 7 |     public let Value: String
/host/spi-builder-workspace/Sources/plugin/commonmark/validation.swift:10:16: warning: stored property 'KeyWithValue' of 'Sendable'-conforming class 'ValidateConfigError' is mutable; this is an error in the Swift 6 language mode
 8 |     /// Override the default "Key:\"Value\"" format used in the error message.
 9 |     /// Matches Go's KeyWithValue field, e.g. for CLI formatting: "--key=value"
10 |     public var KeyWithValue: String = ""
   |                `- warning: stored property 'KeyWithValue' of 'Sendable'-conforming class 'ValidateConfigError' is mutable; this is an error in the Swift 6 language mode
11 |     let patternDescription: String
12 |
[184/184] Compiling HTMLToMarkdown markdownextra.swift
/host/spi-builder-workspace/Sources/plugin/commonmark/validation.swift:5:14: warning: non-final class 'ValidateConfigError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 3 | /// Error thrown when CommonmarkOptions has invalid values.
 4 | /// Fields match Go's ValidateConfigError struct exactly.
 5 | public class ValidateConfigError: Error, LocalizedError {
   |              `- warning: non-final class 'ValidateConfigError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 6 |     public let Key: String
 7 |     public let Value: String
/host/spi-builder-workspace/Sources/plugin/commonmark/validation.swift:10:16: warning: stored property 'KeyWithValue' of 'Sendable'-conforming class 'ValidateConfigError' is mutable; this is an error in the Swift 6 language mode
 8 |     /// Override the default "Key:\"Value\"" format used in the error message.
 9 |     /// Matches Go's KeyWithValue field, e.g. for CLI formatting: "--key=value"
10 |     public var KeyWithValue: String = ""
   |                `- warning: stored property 'KeyWithValue' of 'Sendable'-conforming class 'ValidateConfigError' is mutable; this is an error in the Swift 6 language mode
11 |     let patternDescription: String
12 |
Build complete! (35.08s)
Build complete.
{
  "dependencies" : [
    {
      "identity" : "swiftsoup",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "2.4.0",
            "upper_bound" : "3.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/scinfu/SwiftSoup.git"
    }
  ],
  "manifest_display_name" : "html-to-markdown-swift",
  "name" : "html-to-markdown-swift",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "10.15"
    },
    {
      "name" : "ios",
      "version" : "13.0"
    },
    {
      "name" : "tvos",
      "version" : "13.0"
    },
    {
      "name" : "watchos",
      "version" : "6.0"
    }
  ],
  "products" : [
    {
      "name" : "HTMLToMarkdown",
      "targets" : [
        "HTMLToMarkdown"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "HTMLToMarkdownTests",
      "module_type" : "SwiftTarget",
      "name" : "HTMLToMarkdownTests",
      "path" : "Tests",
      "product_dependencies" : [
        "SwiftSoup"
      ],
      "sources" : [
        "collapse-collapse_test.swift",
        "converter-convert_test.swift",
        "converter-url_test.swift",
        "internal-escape-elem_code_test.swift",
        "internal-escape-elem_divider_test.swift",
        "internal-escape-elem_header_test.swift",
        "internal-escape-elem_image_test.swift",
        "internal-escape-elem_italic_bold_test.swift",
        "internal-escape-elem_list_test.swift",
        "internal-textutils-collapse_code_test.swift",
        "internal-textutils-delimiter_test.swift",
        "internal-textutils-surrounding_spaces_test.swift",
        "plugin-atlassian_test.swift",
        "plugin-commonmark-commonmark_test.swift",
        "plugin-commonmark-render_bold_italic_test.swift",
        "plugin-commonmark-validation_test.swift",
        "plugin-emoji_test.swift",
        "plugin-frontmatter_test.swift",
        "plugin-gfm_test.swift",
        "plugin-markdownextra_test.swift",
        "plugin-multimarkdown_test.swift",
        "plugin-pandoc_test.swift",
        "plugin-reference-links_test.swift",
        "plugin-rmarkdown_test.swift",
        "plugin-strikethrough-strikethrough_test.swift",
        "plugin-table-table_test.swift",
        "plugin-tasklist_test.swift",
        "plugin-typography-linkify_test.swift",
        "plugin-typography-replacements_test.swift",
        "plugin-typography-smart-quotes_test.swift",
        "plugin-typography_test.swift",
        "plugin-vimeo_test.swift",
        "plugin-youtube_test.swift",
        "swift-golden_test.swift"
      ],
      "target_dependencies" : [
        "HTMLToMarkdown"
      ],
      "type" : "test"
    },
    {
      "c99name" : "HTMLToMarkdown",
      "module_type" : "SwiftTarget",
      "name" : "HTMLToMarkdown",
      "path" : "Sources",
      "product_dependencies" : [
        "SwiftSoup"
      ],
      "product_memberships" : [
        "HTMLToMarkdown"
      ],
      "sources" : [
        "collapse/collapse.swift",
        "collapse/is_node.swift",
        "collapse/whitespace.swift",
        "convert_api.swift",
        "converter/convert.swift",
        "converter/converter.swift",
        "converter/ctx.swift",
        "converter/plugin.swift",
        "converter/prioritized.swift",
        "converter/register.swift",
        "converter/render.swift",
        "converter/writer.swift",
        "internal/escape/elem_backslash.swift",
        "internal/escape/elem_code.swift",
        "internal/escape/elem_divider.swift",
        "internal/escape/elem_header.swift",
        "internal/escape/elem_image.swift",
        "internal/escape/elem_italic_bold.swift",
        "internal/escape/elem_list.swift",
        "internal/escape/elem_quote.swift",
        "internal/escape/replacer.swift",
        "internal/escape/util.swift",
        "internal/textutils/codefence.swift",
        "internal/textutils/collapse_code.swift",
        "internal/textutils/escape_multiline.swift",
        "internal/textutils/prefix_lines.swift",
        "internal/textutils/quote.swift",
        "internal/textutils/surrounding_spaces.swift",
        "marker/marker.swift",
        "plugin/atlassian/atlassian.swift",
        "plugin/atlassian/atlassian_render_attachments.swift",
        "plugin/atlassian/atlassian_render_autolinks.swift",
        "plugin/atlassian/atlassian_render_code_blocks.swift",
        "plugin/atlassian/atlassian_render_image_sizing.swift",
        "plugin/base/base.swift",
        "plugin/base/renderers.swift",
        "plugin/commonmark/commonmark.swift",
        "plugin/commonmark/handle_pre_render.swift",
        "plugin/commonmark/options.swift",
        "plugin/commonmark/render_blockquote.swift",
        "plugin/commonmark/render_bold_italic.swift",
        "plugin/commonmark/render_break.swift",
        "plugin/commonmark/render_code.swift",
        "plugin/commonmark/render_comment.swift",
        "plugin/commonmark/render_divider.swift",
        "plugin/commonmark/render_heading.swift",
        "plugin/commonmark/render_image.swift",
        "plugin/commonmark/render_link.swift",
        "plugin/commonmark/render_list.swift",
        "plugin/commonmark/url_utils.swift",
        "plugin/commonmark/validation.swift",
        "plugin/emoji/emoji.swift",
        "plugin/emoji/emoji_render.swift",
        "plugin/emoji/emoji_table.swift",
        "plugin/frontmatter/frontmatter.swift",
        "plugin/gfm/gfm.swift",
        "plugin/gfm/gfm_render_abbr.swift",
        "plugin/gfm/gfm_render_definition_lists.swift",
        "plugin/gfm/gfm_render_details_summary.swift",
        "plugin/gfm/gfm_render_sub_sup.swift",
        "plugin/markdownextra/markdownextra.swift",
        "plugin/markdownextra/me_render_abbreviations.swift",
        "plugin/markdownextra/me_render_definition_lists.swift",
        "plugin/markdownextra/me_render_footnotes.swift",
        "plugin/markdownextra/me_render_header_ids.swift",
        "plugin/multimarkdown/mmd_render_definition_lists.swift",
        "plugin/multimarkdown/mmd_render_figure.swift",
        "plugin/multimarkdown/mmd_render_footnotes.swift",
        "plugin/multimarkdown/mmd_render_image_attributes.swift",
        "plugin/multimarkdown/mmd_render_sub_sup.swift",
        "plugin/multimarkdown/multimarkdown.swift",
        "plugin/pandoc/pandoc.swift",
        "plugin/pandoc/pandoc_render_definition_lists.swift",
        "plugin/pandoc/pandoc_render_footnotes.swift",
        "plugin/pandoc/pandoc_render_header_ids.swift",
        "plugin/pandoc/pandoc_render_math.swift",
        "plugin/pandoc/pandoc_render_sub_sup.swift",
        "plugin/referencelinks/referencelinks.swift",
        "plugin/referencelinks/referencelinks_render_images.swift",
        "plugin/referencelinks/referencelinks_render_links.swift",
        "plugin/rmarkdown/rmarkdown.swift",
        "plugin/rmarkdown/rmarkdown_render_figures.swift",
        "plugin/rmarkdown/rmarkdown_render_tabsets.swift",
        "plugin/strikethrough/strikethrough.swift",
        "plugin/table/1_select.swift",
        "plugin/table/2_collect.swift",
        "plugin/table/3_render.swift",
        "plugin/table/table.swift",
        "plugin/table/utils.swift",
        "plugin/tasklist/tasklist.swift",
        "plugin/typography/typography.swift",
        "plugin/typography/typography_linkify.swift",
        "plugin/typography/typography_replacements.swift",
        "plugin/typography/typography_smart_quotes.swift",
        "plugin/typography/typography_utils.swift",
        "plugin/vimeo/vimeo.swift",
        "plugin/youtube/youtube.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.5"
}
basic-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:8e1c3aab9de7fa4f6e33977b6a4cee007e876da3e605dda0be6b9b9bf86aa951
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.1-latest
Done.