saket / Better-Link-Movement-Method

Attempts to improve how clickable links are detected, highlighted and handled in TextView
Apache License 2.0
780 stars 78 forks source link

Link issue with a Markdown library #15

Closed LutfiTekin closed 6 years ago

LutfiTekin commented 6 years ago

Hi there, First I want to thank you for this library I have been using it for a long time. Lately I have decided to support markdown in my app and I tried to use this one Here's my problem When I add a link like this [inline-style link](https://www.google.com) LinkClick listener gets url as inline-style link not https://www.google.com I couldn't really tell which library caused this but I wanted to ask you anyway

edit: I solved by tapping into the other library's interface.

saket commented 6 years ago

@LutfiTekin this was partly a problem with Markwon and partly a limitation of this library. Markwon has already pushed a fix in v1.0.5, but it's not released yet. You can use jitpack.io to get the latest build in the meanwhile.

You can read more here: https://github.com/noties/Markwon/issues/34

LutfiTekin commented 6 years ago

Thanks for the info