blob: 167bfcec52e4e69d0a9b6e164970efc709e15c6a (
plain)
1
2
3
4
5
6
7
|
/// Extends behavior of InlineSpan arrays.
extension Array where Element == InlineSpan {
/// The concatenated plain text of all spans, ignoring styling.
public var plainText: String {
map(\.text).joined()
}
}
|