diff options
author | Hakim El Hattab <hakim.elhattab@gmail.com> | 2012-07-31 02:49:02 -0300 |
---|---|---|
committer | Hakim El Hattab <hakim.elhattab@gmail.com> | 2012-07-31 02:49:02 -0300 |
commit | 12c9977cda3ceed969c3b24a15dfe33eb2a3e7e4 (patch) | |
tree | 6f3bbe06bbb0e56d48beba6eabac8dbc8b89274d | |
parent | 696346dccbde093af58cf6994fc89f19ab78e8f1 (diff) | |
download | freenode-live-2017-presentation-12c9977cda3ceed969c3b24a15dfe33eb2a3e7e4.tar freenode-live-2017-presentation-12c9977cda3ceed969c3b24a15dfe33eb2a3e7e4.tar.gz |
markdown instructions
-rw-r--r-- | README.md | 15 |
1 files changed, 15 insertions, 0 deletions
@@ -24,6 +24,21 @@ Markup heirarchy needs to be ``<div class="reveal"> <div class="slides"> <sectio </div> ``` +### Markdown + +It's possible to write your slides using Markdown. To enable Markdown simply add the ```data-markdown``` attribute to your ```<section>``` elements and reveal.js will automatically load the JavaScript parser. + +This is based on [data-markdown](https://gist.github.com/1343518) from [Paul Irish](https://github.com/paulirish) which in turn uses [showdown](https://github.com/coreyti/showdown/). Syntax support seems limited judging by my initial tests, this may be due to conflicts with the reveal.js styles. Updates to come. + +```html +<section data-markdown> + ## Page title + + A paragraph with some text and a [link](http://hakim.se). +</section> +``` + + ### Configuration At the end of your page, after ``<script src="js/reveal.js"></script>``, you need to initialize reveal by running the following code. Note that all config values are optional and will default as specified below. |