Mo Atie
Mo Atie
`StringDecorator` class is used to build a Spannable string by appending pieces of text and specifying the Span of each append operation. It doesn't parse a full text as it...
I have decided to use the Builder Pattern. This is because I wanted to make sure that we apply the spans that we need and not have a default impl...
https://www.reddit.com/r/HFY/wiki/ref/faq/formatting_guide
Three issues that I'm encountering: - I cannot use the same Span object multiple times - it keeps moving to the next match, so only the last match is captured...
The latest commit solves the first and second scenarios - I cannot use the same Span object multiple times - it keeps moving to the next match, so only the...
All texts in links display https://www.reddit.com/r/regex/comments/5kz24n/need_some_assistance_in_mimicking_markdown_with/dbrqjl5/ I also commented out the Cache interceptor in order to avoid Http errors #18
I believe we will need to capture the data in groups and store them somehow and build a new spannable string with only the data. Right now the span is...
Latest Resources on MD https://www.reddit.com/r/reddit.com/comments/6ewgt/reddit_markdown_primer_or_how_do_you_do_all_that/ https://www.reddit.com/r/changelog/comments/mg1j6/reddit_change_new_markdown_interpreter/
I'm compiling a list of regex patterns (with examples) for the following: - superscript --> https://regex101.com/r/QBoHeG/3 - full link --> https://regex101.com/r/kBhqyr/3 (same results as [this](https://regex101.com/r/kBhqyr/1) but shorter regex) - ordered...
I needed a way to determine the line number based on the most updated text. I had to introduce a custom SpannableStringBuilder `MDSpannableStringBuilder` that triggers a listener on each span...