Merge with master

This commit is contained in:
Dimitry Ivanov 2019-03-15 15:20:02 +03:00
commit 2845fc70ce
3 changed files with 5 additions and 2 deletions

View File

@ -12,7 +12,6 @@
* Fix DataUri scheme handler in image-loader (<GithubIssue id="74" />)
* Introduced a "copy" builder for SpannableThem <br>Thanks <GithubUser name="c-b-h" />
## 2.0.0
* Add `html-parser-api` and `html-parser-impl` modules
* Add `HtmlEmptyTagReplacement`

View File

@ -208,7 +208,11 @@ public class SpannableBuilder implements Appendable, CharSequence {
/**
* This method will return all {@link Span} spans that <em>overlap</em> specified range,
* so if for example a 1..9 range is specified some spans might have 0..6 or 0..10 start/end ranges.
* <<<<<<< HEAD:markwon-core/src/main/java/ru/noties/markwon/SpannableBuilder.java
* NB spans are returned in reversed order (not in order that we store them internally)
* =======
* NB spans are returned in reversed order (no in order that we store them internally)
* >>>>>>> master:markwon/src/main/java/ru/noties/markwon/SpannableBuilder.java
*
* @since 2.0.1
*/

View File

@ -47,7 +47,7 @@ public class MarkwonTheme {
public static MarkwonTheme create(@NonNull Context context) {
return builderWithDefaults(context).build();
}
/**
* Create an <strong>empty</strong> instance of {@link Builder} with no default values applied
* <p>