WARNING

This is documentation for legacy versions. For the most current version click here.

Installation

stable snapshot

Core Markwon artifact that includes basic markdown parsing and rendering
Extension to add LaTeX formulas to Markwon markdown
Extension to add strikethrough markup to Markwon markdown
Extension to add tables markup (GFM) to Markwon markdown
Extension to add task lists (GFM) to Markwon markdown
Provides HTML parsing functionality
Adds GIF media support to Markwon markdown
Adds OkHttp client to retrieve images data from network
Adds SVG media support to Markwon markdown
Provides RecyclerView.Adapter to display Markwon markdown
Provides MarkwonAdapter.Entry to render TableBlocks inside Android-native TableLayout widget
Add syntax highlight to Markwon markdown via Prism4j library
final def  markwon_version =  'latest_version'

implementation  "ru.noties.markwon:core: $markwon_version "

Snapshot

In order to use latest SNAPSHOT version add snapshot repository to your root project's build.gradle file:

allprojects {
    repositories {
        jcenter()
        google()
        // this one 👇
        maven { url 'https://oss.sonatype.org/content/repositories/snapshots/' } // 👈 this one
        // this one 👆
    }
}

Info

All official artifacts share the same version number and all are uploaded to release and snapshot repositories

Last Updated: 8/6/2019, 7:27:20 PM