Dimitry
Dimitry
Hello @hijunmeng , this is a file in this repository, you can search for it
Hello @hijunmeng , sorry, it is not pushed yet 😅 ```kotlin class FitWidthImageSizeResolverSample : MarkwonTextViewSample() { override fun render() { val md = """ # Fit Width Image  And...
Hello @keluokeda , yeah, unfortunately it is like this. Images are resized to take at maximum available width of a TextView. But if they are inside margin spans (quote is...
Hello @pramodshri , this is true - `Spanned` is returned in the API. In fact it is actually `SpannableStringBuilder`, so you could cast to a `Spannable`. I know it doesn't...
Hello @zhouzhuo810 , unfortunately there is no way use single `$` signs to mark inline latex out of box
Hello @hakobyan1221 , would you say you need to parse only standard HTML tags and keep the rest untouched? It is not something that could be done easily. But it...
For example, you could have a list of allowed tags. Then, before sending your markdown to the parser you could process it to substitute the `
Yes, this is why you would need to process only non-supported tags. And ignore tags that should still be sent to the parser
Hello @bastienleonard , thank you for your submission. Unfortunately achieving bold ordering numbers would require a bit more complex approach. Mainly due to the code: ```java paint.setTypeface(Typeface.create(Typeface.DEFAULT, Typeface.BOLD)); ``` which...
Hello @damionx7 , markdown is parsed _one-way_, so after it is parsed the input is not longer referenced. So there is no way to rebuild raw markdown from the data...