MarkdownTextView
MarkdownTextView copied to clipboard
Voice dictation crashes the app when after pressing `Done`
In general looks looks like it is working fine, but just after dictation is over and user presses Done Example app crashes.
Can be easily fixed by adding:
open override func replaceCharacters(in range: NSRange, with str: String) {
replaceCharacters(in: range, with: NSAttributedString(string: str))
}
to HighlighterTextStorage