Installation

stable snapshot changelog
Core Markwon artifact that includes basic markdown parsing and rendering
Markdown editor based on Markwon
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
Markwon image loading module (with optional GIF and SVG support)
Markwon image loading module (based on Coil library)
Markwon image loading module (based on Glide library)
Markwon image loading module (based on Picasso library)
Markwon customizable commonmark-java InlineParser
Markwon plugin to linkify text (based on Android Linkify)
Provides RecyclerView.Adapter to display Markwon markdown
Provides MarkwonAdapter.Entry to render TableBlocks inside Android-native TableLayout widget
Custom extension based on simple delimiter usage
Add syntax highlight to Markwon markdown via Prism4j library
final def  markwon_version =  'latest_version'

implementation  "io.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: 1/12/2021, 3:08:52 AM