use prism-tomorrow.css

This commit is contained in:
CyC2018
2018-12-19 14:09:39 +08:00
parent 0f00bcacaf
commit e9e604e6a7
1747 changed files with 100462 additions and 0 deletions

View File

@ -0,0 +1,70 @@
~~foobar~~
~~foo
bar~~
~foobar~
~foo
bar~
~foo*bar*baz~
~foo__bar__baz~
~foo[bar](baz)~
----------------------------------------------------
[
["strike", [
["punctuation", "~~"],
"foobar",
["punctuation", "~~"]
]],
["strike", [
["punctuation", "~~"],
"foo\r\nbar",
["punctuation", "~~"]
]],
["strike", [
["punctuation", "~"],
"foobar",
["punctuation", "~"]
]],
["strike", [
["punctuation", "~"],
"foo\r\nbar",
["punctuation", "~"]
]],
["strike", [
["punctuation", "~"],
"foo",
["italic", [
["punctuation", "*"],
"bar",
["punctuation", "*"]
]],
"baz",
["punctuation", "~"]
]],
["strike", [
["punctuation", "~"],
"foo",
["bold", [
["punctuation", "__"],
"bar",
["punctuation", "__"]
]],
"baz",
["punctuation", "~"]
]],
["strike", [
["punctuation", "~"],
"foo",
["url", [
"[bar](baz)"
]],
["punctuation", "~"]
]]
]
----------------------------------------------------
Checks for strike. Also tests for inclusion of bold, italic, and url.