diff options
author | VonC | 2013-11-06 11:06:03 +0100 |
---|---|---|
committer | VonC | 2013-11-06 11:06:03 +0100 |
commit | 4b0fe47bb6cbbded27666ece92a28ba0af885b13 (patch) | |
tree | 5ed57b1d718e504ae68b1e568f82c06de6ea0cc6 /test/test-markdown-attributes.html | |
parent | efbb31cf295e9abcaed7a117a81ccb1a7f38e56e (diff) |
Add slide attributes for single slide section case.
Diffstat (limited to 'test/test-markdown-attributes.html')
-rw-r--r-- | test/test-markdown-attributes.html | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/test/test-markdown-attributes.html b/test/test-markdown-attributes.html index 262c6ae..cc03177 100644 --- a/test/test-markdown-attributes.html +++ b/test/test-markdown-attributes.html @@ -87,6 +87,31 @@ </script> </section> + <section data-markdown> + <script type="text/template"> + <!-- slide-attributes: data-background="#ff0000" --> + ## Hello world + </script> + </section> + + <section data-markdown> + <script type="text/template"> + ## Hello world + <!-- slide-attributes: data-background="#ff0000" --> + </script> + </section> + + <section data-markdown> + <script type="text/template"> + ## Hello world + + Test + <!-- slide-attributes: data-background="#ff0000" --> + + More Test + </script> + </section> + </div> </div> |