Image GIF
WARNING
This is documentation for legacy versions. For the most current version click here.
Adds support for GIF images inside markdown. Relies on android-gif-drawable library
final Markwon markwon = Markwon.builder(context)
// it's required to register ImagesPlugin
.usePlugin(ImagesPlugin.create(context))
// add GIF support for images
.usePlugin(GifPlugin.create())
.build();