SwiftRichString
SwiftRichString copied to clipboard
👩🎨 Elegant Attributed String composition in Swift sauce
Consider this snippet of code: ``` let normal = Style { $0.color = Color.green $0.font = Font.systemFont(ofSize: 12) } let link = Style { $0.color = Color.red $0.font = Font.boldSystemFont(ofSize:...
'AttributedString' is ambiguous for type lookup in this context
This change adds support for En Belgique elements (only color tag support).
I have just updated xcode to 13 beta 5. After updating, I am getting the following error I have tried clearing the cache and rebuilding the project after cleaning. Also...
 Xcode version : 10.0 (10A255) Swift version: 4.2.0 SwiftRichString version:3.0.0
It seems that the framework is not gonna be compatible with a new iOS 15 because of some naming issues (Apple has just introduced AttributedString etc)
Is it possible to render a HTML Table using SwiftRichString?
Is it possible to mark `style` property on `UILabel` and friends as `open` instead of `public`? It would allow to run some useful overloads in subclasses. What do you think?
Normally a style from the base style is inherited if a nested style doesn't override it. It seems like every field in NSParagraphStyle is overridden if one field is set...