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,30 @@
Content-type: text/html
<b></b>
----------------------------------------------------
[
["header-name", "Content-type:"],
" text/html",
["text/html", [
["tag", [
["tag", [
["punctuation", "<"],
"b"
]],
["punctuation", ">"]
]],
["tag", [
["tag", [
["punctuation", "</"],
"b"
]],
["punctuation", ">"]
]]
]]
]
----------------------------------------------------
Checks for HTML content in HTTP.

View File

@ -0,0 +1,30 @@
Content-type: text/x.anything+something-else+xml
<foo></foo>
----------------------------------------------------
[
["header-name", "Content-type:"],
" text/x.anything+something-else+xml",
["application/xml", [
["tag", [
["tag", [
["punctuation", "<"],
"foo"
]],
["punctuation", ">"]
]],
["tag", [
["tag", [
["punctuation", "</"],
"foo"
]],
["punctuation", ">"]
]]
]]
]
----------------------------------------------------
Checks for content with XML suffix in HTTP.

View File

@ -0,0 +1,30 @@
Content-type: application/xml
<foo></foo>
----------------------------------------------------
[
["header-name", "Content-type:"],
" application/xml",
["application/xml", [
["tag", [
["tag", [
["punctuation", "<"],
"foo"
]],
["punctuation", ">"]
]],
["tag", [
["tag", [
["punctuation", "</"],
"foo"
]],
["punctuation", ">"]
]]
]]
]
----------------------------------------------------
Checks for XML content in HTTP.