diff options
author | Hakim El Hattab <hakim.elhattab@gmail.com> | 2017-11-23 11:12:54 +0100 |
---|---|---|
committer | Hakim El Hattab <hakim.elhattab@gmail.com> | 2017-11-23 11:12:54 +0100 |
commit | a0c013606e130baad976195730dcd7e7cd9e2855 (patch) | |
tree | 863b895625ad4ef2c672b4fa99ffb7b93e0eed3a /plugin | |
parent | 65bdccd5807b6dfecad6eb3ea38872436d291e81 (diff) | |
download | fosdem-2018-presentation-a0c013606e130baad976195730dcd7e7cd9e2855.tar fosdem-2018-presentation-a0c013606e130baad976195730dcd7e7cd9e2855.tar.gz |
add inline and external markdown images to example #2039
Diffstat (limited to 'plugin')
-rw-r--r-- | plugin/markdown/example.html | 7 | ||||
-rw-r--r-- | plugin/markdown/example.md | 5 |
2 files changed, 12 insertions, 0 deletions
diff --git a/plugin/markdown/example.html b/plugin/markdown/example.html index 36f6a51..300e39e 100644 --- a/plugin/markdown/example.html +++ b/plugin/markdown/example.html @@ -99,6 +99,13 @@ </script> </section> + <!-- Images --> + <section data-markdown> + <script type="text/template"> + ![Sample image](https://s3.amazonaws.com/static.slid.es/logo/v2/slides-symbol-512x512.png) + </script> + </section> + </div> </div> diff --git a/plugin/markdown/example.md b/plugin/markdown/example.md index 6f6f577..89c7534 100644 --- a/plugin/markdown/example.md +++ b/plugin/markdown/example.md @@ -29,3 +29,8 @@ Content 3.1 ## External 3.2 Content 3.2 + + +## External 3.3 + +![External Image](https://s3.amazonaws.com/static.slid.es/logo/v2/slides-symbol-512x512.png) |