summaryrefslogtreecommitdiffhomepage
path: root/README.md
diff options
context:
space:
mode:
authorVonC2013-11-30 23:11:13 +0100
committerVonC2013-11-30 23:12:42 +0100
commitfdb03b4f1081508705c53ca31f679fb8793a8a95 (patch)
tree44f8a92ba2744b30c887d88b84fac25e55ef0de4 /README.md
parent78dfbf520213d554eef6f1ab925742cf7035e803 (diff)
README.md mentions the new default separators.
- new default separator for slide attributes - new default separator for element attributes Illustrate both, in html comments.
Diffstat (limited to 'README.md')
-rw-r--r--README.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/README.md b/README.md
index f224e5e..9c84a32 100644
--- a/README.md
+++ b/README.md
@@ -60,25 +60,25 @@ You can write your content as a separate file and have reveal.js load it at runt
#### Element Attributes
-Special syntax is available for adding attributes to Markdown elements. This is useful for fragments, amongst other things.
+Special syntax (in html comment) is available for adding attributes to Markdown elements. This is useful for fragments, amongst other things.
```html
<section data-markdown>
<script type="text/template">
- - Item 1 {.class="fragment" data-fragment-index="2"}
- - Item 2 {.class="fragment" data-fragment-index="1"}
+ - Item 1 <!-- .element: class="fragment" data-fragment-index="2" -->
+ - Item 2 <!-- .element: class="fragment" data-fragment-index="1" -->
</script>
</section>
```
#### Slide Attributes
-Special syntax is available for adding attributes to the slide `<section>` elements generated by your Markdown.
+Special syntax (in html comment) is available for adding attributes to the slide `<section>` elements generated by your Markdown.
```html
<section data-markdown>
<script type="text/template">
- <!-- slide-attributes: data-background="#ff0000" -->
+ <!-- slide: data-background="#ff0000" -->
Mardown content
</script>
</section>