diff --git a/docs/CHANGELOG.md b/CHANGELOG.md
similarity index 73%
rename from docs/CHANGELOG.md
rename to CHANGELOG.md
index ce8c7278..5f805716 100644
--- a/docs/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,8 +1,13 @@
# Changelog
-# 3.0.1
-* Add `AsyncDrawableLoader.Builder#implementation` method ()
-* AsyncDrawable allow placeholder to have independent size ()
+# 3.0.2
+* Fix `latex` plugin (#136)
+* Add `#create(Call.Factory)` factory method to `OkHttpImagesPlugin` (#129)
+ thanks to @ZacSweers
+
+## 3.0.1
+* Add `AsyncDrawableLoader.Builder#implementation` method (#109)
+* AsyncDrawable allow placeholder to have independent size (#115)
* `addFactory` method for MarkwonSpansFactory
* Add optional spans for list blocks (bullet and ordered)
* AsyncDrawable placeholder bounds fix
@@ -50,15 +55,16 @@ to get the full picture of latest changes.
## 2.0.1
* `SpannableMarkdownVisitor` Rename blockQuoteIndent to blockIndent
-* Fixed block new lines logic for block quote and paragraph ()
-* AsyncDrawable fix no dimensions bug ()
+* Fixed block new lines logic for block quote and paragraph (#82)
+* AsyncDrawable fix no dimensions bug (#81)
* Update SpannableTheme to use Px instead of Dimension annotation
* Allow TaskListSpan isDone mutation
* Updated commonmark-java to 0.12.1
-* Add OrderedListItemSpan measure utility method ()
+* Add OrderedListItemSpan measure utility method (#78)
* Add SpannableBuilder#getSpans method
-* Fix DataUri scheme handler in image-loader ()
-* Introduced a "copy" builder for SpannableThem
Thanks
+* Fix DataUri scheme handler in image-loader (#74)
+* Introduced a "copy" builder for SpannableThem
+ Thanks @c-b-h
## 2.0.0
* Add `html-parser-api` and `html-parser-impl` modules
@@ -81,18 +87,21 @@ to get the full picture of latest changes.
* Add sample-latex-math module
## v1.1.1
-* Fix OrderedListItemSpan text position (baseline) ()
-* Add softBreakAddsNewLine option for SpannableConfiguration ()
-* Paragraph text can now explicitly be spanned ()
Thanks to
-* Fix table border color if odd background is specified ()
+* Fix OrderedListItemSpan text position (baseline) (#55)
+* Add softBreakAddsNewLine option for SpannableConfiguration (#54)
+* Paragraph text can now explicitly be spanned (#58)
+ Thanks to @c-b-h
+* Fix table border color if odd background is specified (#56)
* Add table customizations (even and header rows)
## v1.1.0
* Update commonmark to 0.11.0 and android-gif to 1.2.14
* Add syntax highlight functionality (`library-syntax` module and `markwon-syntax` artifact)
-* Add headingTypeface, headingTextSizes to SpannableTheme
Thanks to
+* Add headingTypeface, headingTextSizes to SpannableTheme
+ Thanks to @edenman
* Introduce `MediaDecoder` abstraction to `image-loader` module
-* Introduce `SpannableFactory`
Thanks for idea to
+* Introduce `SpannableFactory`
+ Thanks for idea to @c-b-h
* Update sample application to use syntax-highlight
* Update sample application to use clickable placeholder for GIF media
@@ -106,11 +115,13 @@ to `ru.noties.markwon.renderer` package (one level up, previously `ru.noties.mar
## v1.0.5
* Change LinkSpan to extend URLSpan. Allow default linkColor (if not set explicitly)
* Fit an image without dimensions to canvas width (and keep ratio)
-* Add support for separate color for code blocks ()
Thanks to
+* Add support for separate color for code blocks (#37)
+ Thanks to @Arcnor
## v1.0.4
-* Fixes (tables are not rendered when at the end of the markdown)
-* Adds support for `indented code blocks`
Thanks to
+* Fixes #28 (tables are not rendered when at the end of the markdown)
+* Adds support for `indented code blocks`
+ Thanks to @dlew
## v1.0.3
* Fixed ordered lists (when number width is greater than block margin)
@@ -121,11 +132,11 @@ to `ru.noties.markwon.renderer` package (one level up, previously `ru.noties.mar
* Tables can have no borders
## v1.0.1
-* Support for task-lists ()
-* Spans now are applied in reverse order ( )
+* Support for task-lists (#2)
+* Spans now are applied in reverse order (#5 #10)
* Added `SpannableBuilder` to follow the reverse order of spans
* Updated `commonmark-java` to `0.10.0`
-* Fixes
+* Fixes #1
## v1.0.0
diff --git a/docs/.vuepress/config.js b/docs/.vuepress/config.js
index fe306167..95ea14f8 100644
--- a/docs/.vuepress/config.js
+++ b/docs/.vuepress/config.js
@@ -13,7 +13,6 @@ module.exports = {
themeConfig: {
nav: [
{ text: 'Install', link: '/docs/v3/install.md' },
- { text: 'Changelog', link: '/CHANGELOG.md' },
{
text: 'API Version',
items: [
@@ -22,6 +21,7 @@ module.exports = {
{ text: 'Legacy (2.x.x)', link: '/docs/v2/' }
]
},
+ { text: 'Changelog', link: 'https://github.com/noties/Markwon/blob/master/CHANGELOG.md' },
{ text: 'Github', link: 'https://github.com/noties/Markwon' }
],
sidebar: {