You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After upgrading from version 1.5 to 1.6 via cocoapods, my app crashed when trying to parse markdown text. The error was thrown when this method in the MarkdownParser was called:
openfunc removeCustomElement(_ element:MarkdownElement){
guard let index = customElements.index(where:{ someElement ->Boolinreturn element === someElement
})else{return}
customElements.remove(at: index)}
The error was because element was not retained. Downgrading to 1.5 fixed the issue for me. Please let me know if I can provide any more helpful information.
The text was updated successfully, but these errors were encountered:
After upgrading from version 1.5 to 1.6 via cocoapods, my app crashed when trying to parse markdown text. The error was thrown when this method in the MarkdownParser was called:
The error was because
element
was not retained. Downgrading to 1.5 fixed the issue for me. Please let me know if I can provide any more helpful information.The text was updated successfully, but these errors were encountered: