diff --git a/docs/docs/image-loader.md b/docs/docs/image-loader.md
index 1dee8d58..a5716c80 100644
--- a/docs/docs/image-loader.md
+++ b/docs/docs/image-loader.md
@@ -30,6 +30,34 @@ Default instance of `AsyncDrawableLoader` can be obtain like this:
AsyncDrawableLoader.create();
```
+### Scheme support
+
+By default `AsyncDrawableLoader` handles these URL schemes:
+* `file` (including reference to `android_assets`)
+* `data` ([wiki](https://en.wikipedia.org/wiki/Data_URI_scheme))
+ for inline image references
+* all other schemes are considered to be network related and will be tried to obtain
+ from network
+
+#### Data
+
+`data` scheme handler supports both `base64` encoded content and `plain`:
+
+```html
+
+```
+
+```html
+
+```
+
+:::warning Note
+Data uri works with native markdown images, but only in base64 mode:
+```markdown
+
+```
+:::
+
## Configuration
If you wish to configure `AsyncDrawableLoader` `#builder` factory method can be used: