Rename markwon-syntax to markwon-syntax-highlight

This commit is contained in:
Dimitry Ivanov 2018-08-18 14:58:36 +03:00
parent 203f5fae52
commit 84a50be0dd
16 changed files with 8 additions and 8 deletions

@ -4,7 +4,7 @@
[![markwon](https://img.shields.io/maven-central/v/ru.noties/markwon.svg?label=markwon)](http://search.maven.org/#search|ga|1|g%3A%22ru.noties%22%20AND%20a%3A%22markwon%22) [![markwon](https://img.shields.io/maven-central/v/ru.noties/markwon.svg?label=markwon)](http://search.maven.org/#search|ga|1|g%3A%22ru.noties%22%20AND%20a%3A%22markwon%22)
[![markwon-image-loader](https://img.shields.io/maven-central/v/ru.noties/markwon-image-loader.svg?label=markwon-image-loader)](http://search.maven.org/#search|ga|1|g%3A%22ru.noties%22%20AND%20a%3A%22markwon-image-loader%22) [![markwon-image-loader](https://img.shields.io/maven-central/v/ru.noties/markwon-image-loader.svg?label=markwon-image-loader)](http://search.maven.org/#search|ga|1|g%3A%22ru.noties%22%20AND%20a%3A%22markwon-image-loader%22)
[![markwon-syntax](https://img.shields.io/maven-central/v/ru.noties/markwon-syntax.svg?label=markwon-syntax)](http://search.maven.org/#search|ga|1|g%3A%22ru.noties%22%20AND%20a%3A%22markwon-syntax%22) [![markwon-syntax-highlight](https://img.shields.io/maven-central/v/ru.noties/markwon-syntax.svg?label=markwon-syntax)](http://search.maven.org/#search|ga|1|g%3A%22ru.noties%22%20AND%20a%3A%22markwon-syntax%22)
[![markwon-view](https://img.shields.io/maven-central/v/ru.noties/markwon-view.svg?label=markwon-view)](http://search.maven.org/#search|ga|1|g%3A%22ru.noties%22%20AND%20a%3A%22markwon-view%22) [![markwon-view](https://img.shields.io/maven-central/v/ru.noties/markwon-view.svg?label=markwon-view)](http://search.maven.org/#search|ga|1|g%3A%22ru.noties%22%20AND%20a%3A%22markwon-view%22)
**Markwon** is a library for Android that renders markdown as system-native Spannables. It gives ability to display markdown in all TextView widgets (**TextView**, **Button**, **Switch**, **CheckBox**, etc), **Notifications**, **Toasts**, etc. <u>**No WebView is required**</u>. Library provides reasonable defaults for display style of markdown but also gives all the means to tweak the appearance if desired. All markdown features are supported (including limited support for inlined HTML code, markdown tables and images). **Markwon** is a library for Android that renders markdown as system-native Spannables. It gives ability to display markdown in all TextView widgets (**TextView**, **Button**, **Switch**, **CheckBox**, etc), **Notifications**, **Toasts**, etc. <u>**No WebView is required**</u>. Library provides reasonable defaults for display style of markdown but also gives all the means to tweak the appearance if desired. All markdown features are supported (including limited support for inlined HTML code, markdown tables and images).
@ -15,7 +15,7 @@
```groovy ```groovy
implementation 'ru.noties:markwon:1.1.0' implementation 'ru.noties:markwon:1.1.0'
implementation 'ru.noties:markwon-image-loader:1.1.0' // optional implementation 'ru.noties:markwon-image-loader:1.1.0' // optional
implementation 'ru.noties:markwon-syntax:1.1.0' // optional implementation 'ru.noties:markwon-syntax-highlight:1.1.0' // optional
implementation 'ru.noties:markwon-view:1.1.0' // optional implementation 'ru.noties:markwon-view:1.1.0' // optional
``` ```
@ -40,7 +40,7 @@ and then in your module `build.gradle`:
implementation 'ru.noties:markwon:1.1.1-SNAPSHOT' implementation 'ru.noties:markwon:1.1.1-SNAPSHOT'
``` ```
Please note that `markwon-image-loader`, `markwon-syntax` and `markwon-view` are also present in `SNAPSHOT` repository and share the same version as main `markwon` artifact. Please note that `markwon-image-loader`, `markwon-syntax-highlight` and `markwon-view` are also present in `SNAPSHOT` repository and share the same version as main `markwon` artifact.
## Supported markdown features: ## Supported markdown features:
* Emphasis (`*`, `_`) * Emphasis (`*`, `_`)

@ -30,7 +30,7 @@ dependencies {
implementation project(':markwon') implementation project(':markwon')
implementation project(':markwon-image-loader') implementation project(':markwon-image-loader')
implementation project(':markwon-syntax') implementation project(':markwon-syntax-highlight')
deps.with { deps.with {
implementation it['okhttp'] implementation it['okhttp']

@ -0,0 +1,3 @@
POM_NAME=Markwon
POM_ARTIFACT_ID=markwon-syntax-highlight
POM_PACKAGING=aar

@ -1,3 +0,0 @@
POM_NAME=Markwon
POM_ARTIFACT_ID=markwon-syntax
POM_PACKAGING=aar

@ -1,3 +1,3 @@
rootProject.name = 'MarkwonProject' rootProject.name = 'MarkwonProject'
include ':app', ':markwon', ':markwon-image-loader', ':markwon-view', ':sample-custom-extension', include ':app', ':markwon', ':markwon-image-loader', ':markwon-view', ':sample-custom-extension',
':markwon-syntax', ':markwon-html-parser-api', ':markwon-html-parser-impl' ':markwon-syntax-highlight', ':markwon-html-parser-api', ':markwon-html-parser-impl'