diff options
author | Spencer Russell <spencer.f.russell@gmail.com> | 2017-09-11 15:13:37 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-09-11 15:13:37 -0400 |
commit | 665d3a151db2521922f51fee250f0511ffa03be7 (patch) | |
tree | b68ee142da833c8cb13787d0bacaf997d7f91a50 | |
parent | 43eada79901830702bd40dce857831aef8e76759 (diff) | |
download | fosdem-2018-presentation-665d3a151db2521922f51fee250f0511ffa03be7.tar fosdem-2018-presentation-665d3a151db2521922f51fee250f0511ffa03be7.tar.gz |
adds note about necessary markdown scripts to README
-rw-r--r-- | README.md | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -105,7 +105,7 @@ The presentation markup hierarchy needs to be `.reveal > .slides > section` wher ### Markdown -It's possible to write your slides using Markdown. To enable Markdown, add the `data-markdown` attribute to your `<section>` elements and wrap the contents in a `<textarea data-template>` like the example below. +It's possible to write your slides using Markdown. To enable Markdown, add the `data-markdown` attribute to your `<section>` elements and wrap the contents in a `<textarea data-template>` like the example below. You'll also need to add the `plugin/markdown/marked.js` and `plugin/markdown/markdown.js` scripts (in that order) to your HTML file. This is based on [data-markdown](https://gist.github.com/1343518) from [Paul Irish](https://github.com/paulirish) modified to use [marked](https://github.com/chjj/marked) to support [GitHub Flavored Markdown](https://help.github.com/articles/github-flavored-markdown). Sensitive to indentation (avoid mixing tabs and spaces) and line breaks (avoid consecutive breaks). |