Merge pull request #21 from flutter/mit-mit-imgdocs
Update README.md
diff --git a/packages/flutter_markdown/README.md b/packages/flutter_markdown/README.md
index c5a5ed9..05bb266 100644
--- a/packages/flutter_markdown/README.md
+++ b/packages/flutter_markdown/README.md
@@ -23,3 +23,15 @@
but it's possible to create your own custom styling. Use the MarkdownStyle class
to pass in your own style. If you don't want to use Markdown outside of material
design, use the MarkdownRaw class.
+
+## Image support
+
+The `Img` tag only supports the following image locations. It specifically
+does not support image locations referring to bundled assets.
+
+* From the network: Use a URL prefixed by either `http://` or `https://`.
+
+* From local files on the device: Use an absolute path to the file, for example by
+ concatenating the file name with the path returned by a known storage location,
+ such as those provided by the [`path_provider`](https://pub.dartlang.org/packages/path_provider)
+ plugin.