diff --git a/CHANGELOG.md b/CHANGELOG.md index ee18c59a..f0837eee 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ # 4.2.0-SNAPSHOT * `MarkwonEditor` to highlight markdown input whilst editing (new module: `markwon-editor`) +* `CoilImagesPlugin` image loader based on [Coil] library (new module: `markwon-image-coil`) ([#166], [#174]) +
Thanks to [@tylerbwong] * `Markwon#configuration` method to expose `MarkwonConfiguration` via public API * `HeadingSpan#getLevel` getter * Add `SvgPictureMediaDecoder` in `image` module to deal with SVG without dimensions ([#165]) @@ -9,7 +11,11 @@ * `LinkifyPlugin` applies link span that is configured by `Markwon` (obtain via span factory) * `LinkifyPlugin` is thread-safe +[@tylerbwong]: https://github.com/tylerbwong +[Coil]: https://github.com/coil-kt/coil [#165]: https://github.com/noties/Markwon/issues/165 +[#166]: https://github.com/noties/Markwon/issues/166 +[#174]: https://github.com/noties/Markwon/pull/174 # 4.1.2 * Do not re-use RenderProps when creating a new visitor (fixes [#171]) diff --git a/docs/.vuepress/config.js b/docs/.vuepress/config.js index f8db7ba5..6a5e53cf 100644 --- a/docs/.vuepress/config.js +++ b/docs/.vuepress/config.js @@ -102,6 +102,7 @@ module.exports = { '/docs/v4/ext-tasklist/', '/docs/v4/html/', '/docs/v4/image/', + '/docs/v4/image-coil/', '/docs/v4/image-glide/', '/docs/v4/image-picasso/', '/docs/v4/linkify/', diff --git a/markwon-image-coil/src/main/java/io/noties/markwon/image/coil/CoilImagesPlugin.java b/markwon-image-coil/src/main/java/io/noties/markwon/image/coil/CoilImagesPlugin.java index a52318df..47a43ad3 100644 --- a/markwon-image-coil/src/main/java/io/noties/markwon/image/coil/CoilImagesPlugin.java +++ b/markwon-image-coil/src/main/java/io/noties/markwon/image/coil/CoilImagesPlugin.java @@ -29,8 +29,8 @@ import io.noties.markwon.image.DrawableUtils; import io.noties.markwon.image.ImageSpanFactory; /** - * @since 4.0.0 * @author Tyler Wong + * @since 4.2.0-SNAPSHOT */ public class CoilImagesPlugin extends AbstractMarkwonPlugin {