aboutsummaryrefslogtreecommitdiff
path: root/test/script/markdown/github-style-codeblock.js.EXPECTED
diff options
context:
space:
mode:
Diffstat (limited to 'test/script/markdown/github-style-codeblock.js.EXPECTED')
-rw-r--r--test/script/markdown/github-style-codeblock.js.EXPECTED11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/script/markdown/github-style-codeblock.js.EXPECTED b/test/script/markdown/github-style-codeblock.js.EXPECTED
new file mode 100644
index 00000000..5daca2f9
--- /dev/null
+++ b/test/script/markdown/github-style-codeblock.js.EXPECTED
@@ -0,0 +1,11 @@
+<p>Define a function in javascript:</p>
+
+<pre><code>function MyFunc(a) {
+ var s = '`';
+}
+</code></pre>
+
+<p>And some HTML</p>
+
+<pre><code class="html">&lt;div&gt;HTML!&lt;/div&gt;
+</code></pre>