File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
Sources/SwiftRichString/Style Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 15
15
<key >CFBundlePackageType </key >
16
16
<string >FMWK </string >
17
17
<key >CFBundleShortVersionString </key >
18
- <string >3.0.0 </string >
18
+ <string >3.0.1 </string >
19
19
<key >CFBundleSignature </key >
20
20
<string >???? </string >
21
21
<key >CFBundleVersion </key >
Original file line number Diff line number Diff line change @@ -264,14 +264,14 @@ public class StyleGroup: StyleProtocol {
264
264
removeTag ( index: index, with: " \n " )
265
265
continue
266
266
}
267
- guard let attribute = self . styles [ tag . name ] else { continue }
267
+
268
268
269
269
removeTag ( index: index)
270
270
if let closeIndex = tag. endingTagIndex {
271
271
guard closeIndex < tagQueue. count else { continue }
272
272
let closingTag = tagQueue [ closeIndex]
273
273
removeTag ( index: closeIndex)
274
-
274
+ guard let attribute = self . styles [ tag . name ] else { continue }
275
275
let location = tag. range. location
276
276
let length = closingTag. range. location- location
277
277
let range = NSRange ( location: location, length: length)
Original file line number Diff line number Diff line change 1
1
Pod ::Spec . new do |s |
2
2
s . name = "SwiftRichString"
3
- s . version = "3.0.0 "
3
+ s . version = "3.0.1 "
4
4
s . summary = "Elegant Strings & Attributed Strings Toolkit for Swift"
5
5
s . description = <<-DESC
6
6
SwiftRichString is the best toolkit to work easily with Strings and Attributed Strings.
You can’t perform that action at this time.
0 commit comments