WARNING
+This is documentation for legacy 2.x.x versions. For the most current version click here.
+
-
-
-
-
-By default configuration uses TextView textColor for styling, so changing textColor changes style
-
----
-
-## Documentation
-
-Please visit [documentation] web-site for reference
-
-[documentation]: https://noties.github.io/Markwon
-
----
-
-## Applications using Markwon
-
-* [Partiko](https://partiko.app)
-* [FairNote Notepad](https://play.google.com/store/apps/details?id=com.rgiskard.fairnote)
-
-
----
-
-# Demo
-Based on [this cheatsheet][cheatsheet]
-
----
-
-## Headers
----
-# Header 1
-## Header 2
-### Header 3
-#### Header 4
-##### Header 5
-###### Header 6
----
-
-## Emphasis
-
-Emphasis, aka italics, with *asterisks* or _underscores_.
-
-Strong emphasis, aka bold, with **asterisks** or __underscores__.
-
-Combined emphasis with **asterisks and _underscores_**.
-
-Strikethrough uses two tildes. ~~Scratch this.~~
-
----
-
-## Lists
-1. First ordered list item
-2. Another item
- * Unordered sub-list.
-1. Actual numbers don't matter, just that it's a number
- 1. Ordered sub-list
-4. And another item.
-
- You can have properly indented paragraphs within list items. Notice the blank line above, and the leading spaces (at least one, but we'll use three here to also align the raw Markdown).
-
- To have a line break without a paragraph, you will need to use two trailing spaces.
- Note that this line is separate, but within the same paragraph.
- (This is contrary to the typical GFM line break behaviour, where trailing spaces are not required.)
-
-* Unordered list can use asterisks
-- Or minuses
-+ Or pluses
-
----
-
-## Links
-
-[I'm an inline-style link](https://www.google.com)
-
-[I'm a reference-style link][Arbitrary case-insensitive reference text]
-
-[I'm a relative reference to a repository file](../blob/master/LICENSE)
-
-[You can use numbers for reference-style link definitions][1]
-
-Or leave it empty and use the [link text itself].
-
----
-
-## Code
-
-Inline `code` has `back-ticks around` it.
-
-```javascript
-var s = "JavaScript syntax highlighting";
-alert(s);
-```
-
-```python
-s = "Python syntax highlighting"
-print s
-```
-
-```java
-/**
- * Helper method to obtain a Parser with registered strike-through & table extensions
- * & task lists (added in 1.0.1)
- *
- * @return a Parser instance that is supported by this library
- * @since 1.0.0
- */
-@NonNull
-public static Parser createParser() {
- return new Parser.Builder()
- .extensions(Arrays.asList(
- StrikethroughExtension.create(),
- TablesExtension.create(),
- TaskListExtension.create()
- ))
- .build();
-}
-```
-
-```xml
-