SwiftRichString icon indicating copy to clipboard operation
SwiftRichString copied to clipboard

👩‍🎨 Elegant Attributed String composition in Swift sauce

Results 42 SwiftRichString issues
Sort by recently updated
recently updated
newest added

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:...

question

'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...

![74EF7E3C-A0B6-45C7-AC03-A0D8EB69DC65](https://user-images.githubusercontent.com/19679927/58003184-d1bd9080-7b12-11e9-83fb-647cca6a0575.png) 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...