update components
This commit is contained in:
parent
2a4b879c21
commit
63664e6c1c
1155 changed files with 62261 additions and 84 deletions
70
dashboard-ui/bower_components/prism/tests/languages/markdown/bold_feature.test
vendored
Normal file
70
dashboard-ui/bower_components/prism/tests/languages/markdown/bold_feature.test
vendored
Normal file
|
@ -0,0 +1,70 @@
|
|||
**foobar**
|
||||
**foo
|
||||
bar**
|
||||
__foobar__
|
||||
__foo
|
||||
bar__
|
||||
|
||||
__foo*bar*baz__
|
||||
__foo_bar_baz__
|
||||
__foo[bar](baz)__
|
||||
|
||||
----------------------------------------------------
|
||||
|
||||
[
|
||||
["bold", [
|
||||
["punctuation", "**"],
|
||||
"foobar",
|
||||
["punctuation", "**"]
|
||||
]],
|
||||
["bold", [
|
||||
["punctuation", "**"],
|
||||
"foo\r\nbar",
|
||||
["punctuation", "**"]
|
||||
]],
|
||||
["bold", [
|
||||
["punctuation", "__"],
|
||||
"foobar",
|
||||
["punctuation", "__"]
|
||||
]],
|
||||
["bold", [
|
||||
["punctuation", "__"],
|
||||
"foo\r\nbar",
|
||||
["punctuation", "__"]
|
||||
]],
|
||||
|
||||
["bold", [
|
||||
["punctuation", "__"],
|
||||
"foo",
|
||||
["italic", [
|
||||
["punctuation", "*"],
|
||||
"bar",
|
||||
["punctuation", "*"]
|
||||
]],
|
||||
"baz",
|
||||
["punctuation", "__"]
|
||||
]],
|
||||
["bold", [
|
||||
["punctuation", "__"],
|
||||
"foo",
|
||||
["italic", [
|
||||
["punctuation", "_"],
|
||||
"bar",
|
||||
["punctuation", "_"]
|
||||
]],
|
||||
"baz",
|
||||
["punctuation", "__"]
|
||||
]],
|
||||
["bold", [
|
||||
["punctuation", "__"],
|
||||
"foo",
|
||||
["url", [
|
||||
"[bar](baz)"
|
||||
]],
|
||||
["punctuation", "__"]
|
||||
]]
|
||||
]
|
||||
|
||||
----------------------------------------------------
|
||||
|
||||
Checks for bold. Also tests for inclusion of italic and url.
|
Loading…
Add table
Add a link
Reference in a new issue