diff options
author | Riceball LEE <snowyu.lee@gmail.com> | 2015-11-11 07:37:08 +0000 |
---|---|---|
committer | Riceball LEE <snowyu.lee@gmail.com> | 2015-11-11 07:37:08 +0000 |
commit | 16ebf2a783724527faac2036bc2f971df8dea0a5 (patch) | |
tree | 1247bb09eeca6fa8b140f7e0fb3d12245f5da486 /test/test-markdown-external.html | |
parent | 695293145193ed84b7ef193b538bb144ecb2832e (diff) | |
download | fosdem-2018-presentation-16ebf2a783724527faac2036bc2f971df8dea0a5.tar fosdem-2018-presentation-16ebf2a783724527faac2036bc2f971df8dea0a5.tar.gz |
* [bug] the markdown plugin can not render highlight codes for marked.setOptions(highlight)
Diffstat (limited to 'test/test-markdown-external.html')
-rw-r--r-- | test/test-markdown-external.html | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/test/test-markdown-external.html b/test/test-markdown-external.html new file mode 100644 index 0000000..859d0a1 --- /dev/null +++ b/test/test-markdown-external.html @@ -0,0 +1,36 @@ +<!doctype html> +<html lang="en"> + + <head> + <meta charset="utf-8"> + + <title>reveal.js - Test Markdown</title> + + <link rel="stylesheet" href="../css/reveal.css"> + <link rel="stylesheet" href="qunit-1.12.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="simple.md" data-separator="^\n\n\n" data-separator-vertical="^\n\n"></section> + </div> + + </div> + + <script src="../lib/js/head.min.js"></script> + <script src="../js/reveal.js"></script> + <script src="../plugin/highlight/highlight.js"></script> + <script src="../plugin/markdown/marked.js"></script> + <script src="../plugin/markdown/markdown.js"></script> + <script src="qunit-1.12.0.js"></script> + + <script src="test-markdown-external.js"></script> + + </body> +</html> |