diff --git a/app/build.gradle b/app/build.gradle
index 93b59222..51dd6d43 100644
--- a/app/build.gradle
+++ b/app/build.gradle
@@ -28,7 +28,7 @@ android {
dependencies {
- implementation project(':markwon')
+ implementation project(':markwon-core')
implementation project(':markwon-ext-strikethrough')
implementation project(':markwon-ext-tables')
implementation project(':markwon-ext-tasklist')
diff --git a/build.gradle b/build.gradle
index f0a79879..66ba2c0f 100644
--- a/build.gradle
+++ b/build.gradle
@@ -19,6 +19,10 @@ allprojects {
}
version = VERSION_NAME
group = GROUP
+
+ tasks.withType(Javadoc) {
+ options.addStringOption('Xdoclint:none', '-quiet')
+ }
}
task clean(type: Delete) {
diff --git a/docs/.vuepress/.artifacts.js b/docs/.vuepress/.artifacts.js
index 8b93cea3..532f38d9 100644
--- a/docs/.vuepress/.artifacts.js
+++ b/docs/.vuepress/.artifacts.js
@@ -1,4 +1,4 @@
// this is a generated file, do not modify. To update it run 'collectArtifacts.js' script
-const artifacts = [{"id":"markwon","name":"Markwon","group":"ru.noties","description":"Core Markwon artifact that includes basic markdown parsing and rendering"},{"id":"markwon-ext-strikethrough","name":"Markwon-Ext-Strikethrough","group":"ru.noties"},{"id":"markwon-html-parser-impl","name":"Markwon","group":"ru.noties"},{"id":"markwon-syntax-highlight","name":"Markwon","group":"ru.noties"},{"id":"markwon-view","name":"Markwon-View","group":"ru.noties"}];
+const artifacts = [{"id":"core","name":"Core","group":"ru.noties.markwon","description":"Core Markwon artifact that includes basic markdown parsing and rendering"},{"id":"ext-latex","name":"LaTeX","group":"ru.noties.markwon","description":"Extension to add LaTeX formulas to Markwon markdown"},{"id":"ext-strikethrough","name":"Strikethrough","group":"ru.noties.markwon","description":"Extension to add strikethrough markup to Markwon markdown"},{"id":"ext-tables","name":"Tables","group":"ru.noties.markwon","description":"Extension to add tables markup (GFM) to Markwon markdown"},{"id":"ext-tasklist","name":"Task List","group":"ru.noties.markwon","description":"Extension to add task lists (GFM) to Markwon markdown"},{"id":"html","name":"HTML","group":"ru.noties.markwon","description":"Provides HTML parsing functionality"},{"id":"image-gif","name":"Image GIF","group":"ru.noties.markwon","description":"Adds GIF media support to Markwon markdown"},{"id":"image-okhttp","name":"Image OkHttp","group":"ru.noties.markwon","description":"Adds OkHttp client to retrieve images data from network"},{"id":"image-svg","name":"Image SVG","group":"ru.noties.markwon","description":"Adds SVG media support to Markwon markdown"},{"id":"recycler","name":"Recycler","group":"ru.noties.markwon","description":"Provides RecyclerView.Adapter to display Markwon markdown"},{"id":"syntax-highlight","name":"Syntax Highlight","group":"ru.noties.markwon","description":"Add syntax highlight to Markwon markdown via Prism4j library"}];
export { artifacts };
diff --git a/docs/.vuepress/components/ArtifactPicker.vue b/docs/.vuepress/components/ArtifactPicker.vue
index 83d6c9cb..21e2a560 100644
--- a/docs/.vuepress/components/ArtifactPicker.vue
+++ b/docs/.vuepress/components/ArtifactPicker.vue
@@ -42,7 +42,7 @@ export default {
data() {
return {
artifacts,
- selected: []
+ selected: ['core']
};
},
methods: {
@@ -86,6 +86,7 @@ export default {
display: flex;
flex-wrap: wrap;
flex-direction: row;
+ margin-top: 0.5em;
}
.artifact {
flex: 1;
diff --git a/docs/.vuepress/components/MavenBadge.vue b/docs/.vuepress/components/MavenBadge.vue
index 7c920bfc..3dddbf68 100644
--- a/docs/.vuepress/components/MavenBadge.vue
+++ b/docs/.vuepress/components/MavenBadge.vue
@@ -1,17 +1,22 @@
-
+