David Walter

Results 6 comments of David Walter

Yeah I guess because of this Regex the resulting emoji code results in `:some\_emoji:` instead of `:some_emoji:` but then `EmojiText` tries to find `some\_emoji` in the list of available emojis...

Agreed, that would be a nice addition. I was looking into that not too long ago, but I haven't found a proper way to add that. If you find a...

Hello, sadly no this is definitely a current limitation. The way `EmojiText` works is by using [`AttributedString(markdown:options:baseURL:)`](https://developer.apple.com/documentation/foundation/attributedstring/3796160-init) and splitting the runs of the `AttributedString` into `Image` and `Text` parts then...

Also which version of EmojiText is this? With `3.3.0` the render should look different. At least when I try this ```swift EmojiText( markdown: "[hoge](https://sample.com)\n[:test:](https://sample.com)", emojis: [ RemoteEmoji( shortcode: "test", url:...

It does not overwrite the default implementation. `String(describing: self)` simply checks if `self` conforms to `CustomStringConvertible` and if it does it will use `self.description` therefore we will run into a...

While it is true, that `AlertItem` doesn't need to be `Identifiable` at this moment I think there are no real advantages to removing it, but some disadvantes of remving it....