• Stars
    star
    2,758
  • Rank 16,510 (Top 0.4 %)
  • Language
    Java
  • License
    Apache License 2.0
  • Created over 7 years ago
  • Updated 7 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Android markdown library (no WebView)

logo

Markwon

Build

Markwon is a markdown library for Android. It parses markdown following commonmark-spec with the help of amazing commonmark-java library and renders result as Android-native Spannables. No HTML is involved as an intermediate step. No WebView is required. It's extremely fast, feature-rich and extensible.

It gives ability to display markdown in all TextView widgets (TextView, Button, Switch, CheckBox, etc), Toasts and all other places that accept Spanned content. Library provides reasonable defaults to display style of a markdown content but also gives all the means to tweak the appearance if desired. All markdown features listed in commonmark-spec are supported (including support for inlined/block HTML code, markdown tables, images and syntax highlight).

Markwon comes with a sample application. It is a collection of library usages that comes with search and source code for each code sample.

Since version 4.2.0 Markwon comes with an editor to highlight markdown input as user types (for example in EditText).

Installation

stable snapshot

implementation "io.noties.markwon:core:${markwonVersion}"

Full list of available artifacts is present in the install section of the documentation web-site.

Please visit documentation web-site for further reference.

You can find previous version of Markwon in 2.x.x and 3.x.x branches

Supported markdown features:

  • Emphasis (*, _)
  • Strong emphasis (**, __)
  • Strike-through (~~)
  • Headers (#{1,6})
  • Links ([]() && [][])
  • Images
  • Thematic break (---, ***, ___)
  • Quotes & nested quotes (>{1,})
  • Ordered & non-ordered lists & nested ones
  • Inline code
  • Code blocks
  • Tables (with limitations)
  • Syntax highlight
  • LaTeX formulas
  • HTML
    • Emphasis (<i>, <em>, <cite>, <dfn>)
    • Strong emphasis (<b>, <strong>)
    • SuperScript (<sup>)
    • SubScript (<sub>)
    • Underline (<u>, ins)
    • Strike-through (<s>, <strike>, <del>)
    • Link (a)
    • Lists (ul, ol)
    • Images (img will require configured image loader)
    • Blockquote (blockquote)
    • Heading (h1, h2, h3, h4, h5, h6)
    • there is support to render any HTML tag
  • Task lists:
  • Not done
    • Done with X
    • and or small x

Screenshots

Taken with default configuration (except for image loading) in sample app:

By default configuration uses TextView textColor for styling, so changing textColor changes style


Documentation

Please visit documentation web-site for reference

Consulting

Paid consulting is available. Please reach me out at markwon+consulting[at]noties.io to discuss your idea or a project


Demo

Based on this 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

  2. Ordered sub-list

  3. 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

I'm a reference-style link

I'm a relative reference to a repository file

You can use numbers for reference-style link definitions

Or leave it empty and use the link text itself.


Code

Inline code has back-ticks around it.

var s = "JavaScript syntax highlighting";
alert(s);
s = "Python syntax highlighting"
print s
/**
 * Helper method to obtain a Parser with registered strike-through &amp; table extensions
 * &amp; 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();
}
<ScrollView
  android:id="@+id/scroll_view"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  android:layout_marginTop="?android:attr/actionBarSize">

  <TextView
    android:id="@+id/text"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_margin="16dip"
    android:lineSpacingExtra="2dip"
    android:textSize="16sp"
    tools:text="yo\nman" />

</ScrollView>
No language indicated, so no syntax highlighting.
But let's throw in a <b>tag</b>.

Tables

Colons can be used to align columns.

Tables Are Cool
col 3 is right-aligned $1600
col 2 is centered $12
zebra stripes are neat $1

There must be at least 3 dashes separating each header cell. The outer pipes (|) are optional, and you don't need to make the raw Markdown line up prettily. You can also use inline Markdown.

Markdown Less Pretty
Still renders nicely
1 2 3

Blockquotes

Blockquotes are very handy in email to emulate reply text. This line is part of the same quote.

Quote break.

This is a very long line that will still be quoted properly when it wraps. Oh boy let's keep writing to make sure this is long enough to actually wrap for everyone. Oh, you can put Markdown into a blockquote.

Nested quotes

Hello!

And to you!


Inline HTML

<u><i>H<sup>T<sub>M</sub></sup><b><s>L</s></b></i></u>

HTML


Horizontal Rule

Three or more...


Hyphens (-)


Asterisks (*)


Underscores (_)

License

  Copyright 2019 Dimitry Ivanov ([email protected])

  Licensed under the Apache License, Version 2.0 (the "License");
  you may not use this file except in compliance with the License.
  You may obtain a copy of the License at

      http://www.apache.org/licenses/LICENSE-2.0

  Unless required by applicable law or agreed to in writing, software
  distributed under the License is distributed on an "AS IS" BASIS,
  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  See the License for the specific language governing permissions and
  limitations under the License.

More Repositories

1

Scrollable

Android scrollable tabs
Java
1,237
star
2

ScrollingBackgroundView

Endless scrolling background with drawable tiling
Java
359
star
3

FillDrawable

Java
108
star
4

Enhance

Add API information (since/deprecation) to Android source code as javadoc tags
Java
81
star
5

Debug

Android logging utility
Java
62
star
6

Storm

Android SQLite database manager
Java
53
star
7

Prism4j

Simplified Java clone of prism-js
Java
51
star
8

ColorCrossFade

Color cross fade utility for Android
Java
46
star
9

Flatten

Flatten json response with Flatten & Gson
Java
35
star
10

SharedPreferencesGenerator

Android annotation based SharedPreferences Generator
Java
30
star
11

ScriptJava

Java REPL today
Java
21
star
12

Handle

Handler-based Eventbus for Android
Java
18
star
13

SimplePrefs

Android SharedPreferences made easy
Java
14
star
14

ParcelGen

Android easy Parcelable
Java
7
star
15

BuildTimeGradleCodeGen

The most trivial (and hacky) code generation with Gradle for Android
7
star
16

Lifebus

Lifecycle events bus for Android
Java
7
star
17

Tumbleweed-Tutorial

Create complex Android animations with Tumblweed library
Java
7
star
18

Requirements

Small utility library for Android to evaluate requirements in order for some action to proceed. For example: network connection, permissions (API 23), system services (location, bluetooth, ...), etc.
Java
7
star
19

Adapt

RecyclerView.Adapter only shorter
Kotlin
5
star
20

Storm2.0

Java
4
star
21

DemoUi

Command line tool to access Android Demo Ui
Java
3
star
22

ViewTypes

Android adapter view types abstraction
Java
3
star
23

CursorMock

CursorMock for Android
Java
3
star
24

DrawableUtils

Java
3
star
25

Lazy

Utility to postpone initialisation of a value
Java
2
star
26

SqlBuilder

Utility to build SQL statement with binding of named arguments
Java
2
star
27

BlogProjects

https://noties.io
Kotlin
2
star
28

StopShip

A convenience utility around Android's STOPSHIP functionality with build-in Lint support
Kotlin
2
star
29

android-prettify

Java
2
star
30

RxTask

Java
1
star
31

IconView

One image resource for multiple colors
Java
1
star
32

GithubPackageRegistryAndroid

Playground for Github Package Registry Android artifacts built with Gradle
Java
1
star
33

NullSafe

Null safe flow for Java & Android
Java
1
star
34

todo

Java
1
star
35

Remodel

Java
1
star
36

Tasker

Java
1
star
37

Permissions

Android permissions
Java
1
star
38

Maqueta

Java
1
star
39

Listeners

Simple data structure with iteration and adding/removal of elements without copying of underlying collection
Java
1
star