123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132 |
- <!doctype html>
- <html lang="en">
- <head>
- <meta charset="utf-8">
- <title>reveal.js - Test Markdown Element Attributes</title>
- <link rel="stylesheet" href="../css/reveal.css">
- <link rel="stylesheet" href="qunit-2.5.0.css">
- </head>
- <body style="overflow: auto;">
- <div id="qunit"></div>
- <div id="qunit-fixture"></div>
- <div class="reveal" style="display: none;">
- <div class="slides">
-
-
- <section data-markdown data-separator="^\n---\n$" data-separator-vertical="^\n--\n$" data-element-attributes="{_\s*?([^}]+?)}">>
- <script type="text/template">
- ## Slide 1.1
-
- --
- ## Slide 1.2
-
- Paragraph 1
-
- Paragraph 2
-
- - list item 1
- - list item 2
- - list item 3
- ---
- ## Slide 2
- Paragraph 1.2
- multi-line
- Paragraph 2.2
- Paragraph 2.3
- Paragraph 2.4
- - list item 1
- - list item 2
- - list item 3
- - list item 4
-
- - list item 5
- Test
- ![Example Picture](examples/assets/image2.png)
- </script>
- </section>
- <section data-markdown data-separator="^\n\n\n"
- data-separator-vertical="^\n\n"
- data-separator-notes="^Note:"
- data-charset="utf-8">
- <script type="text/template">
- # Test attributes in Markdown with default separator
- ## Slide 1 Def
- ## Slide 2 Def
-
- </script>
- </section>
- <section data-markdown>
- <script type="text/template">
- ## Hello world
- A paragraph
-
- </script>
- </section>
- <section data-markdown>
- <script type="text/template">
- ## Hello world
- Multiple
- Line
-
- </script>
- </section>
- <section data-markdown>
- <script type="text/template">
- ## Hello world
- Test
- More Test
- </script>
- </section>
- </div>
- </div>
- <script src="../js/reveal.js"></script>
- <script src="../plugin/markdown/marked.js"></script>
- <script src="../plugin/markdown/markdown.js"></script>
- <script src="qunit-2.5.0.js"></script>
- <script src="test-markdown-element-attributes.js"></script>
- </body>
- </html>
|