summaryrefslogtreecommitdiffstats
path: root/packages/markdown/marked/test/new/gfm_code.md
diff options
context:
space:
mode:
Diffstat (limited to 'packages/markdown/marked/test/new/gfm_code.md')
-rw-r--r--packages/markdown/marked/test/new/gfm_code.md43
1 files changed, 0 insertions, 43 deletions
diff --git a/packages/markdown/marked/test/new/gfm_code.md b/packages/markdown/marked/test/new/gfm_code.md
deleted file mode 100644
index 79d06b16..00000000
--- a/packages/markdown/marked/test/new/gfm_code.md
+++ /dev/null
@@ -1,43 +0,0 @@
-``` js
-var a = 'hello';
-console.log(a + ' world');
-```
-
-~~~bash
-echo "hello, ${WORLD}"
-~~~
-
-```````longfence
-Q: What do you call a tall person who sells stolen goods?
-```````
-
-~~~~~~~~~~ ManyTildes
-A longfence!
-~~~~~~~~~~
-
-How about an empty code block?
-
-```js
-```
-
-How about a code block with only an empty line?
-
-```js
-
-```
-
-With some trailing empty lines:
-
-```
-ciao
-
-
-```
-
-Closing fences must lay on a new line:
-
-```
-hello()
-^```
-"this should still be in the code block!"
-```