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,16 @@
<%----%>
<%--foo--%>
<%-- foo
bar --%>
----------------------------------------------------
[
["asp comment", "<%----%>"],
["asp comment", "<%--foo--%>"],
["asp comment", "<%-- foo\r\nbar --%>"]
]
----------------------------------------------------
Checks for comments.

View File

@ -0,0 +1,92 @@
<%@Assembly foo="bar"%>
<% @Control foo="bar" %>
<%@ Implements%>
<%@Import%>
<%@Master%>
<%@MasterType%>
<%@OutputCache%>
<%@Page%>
<%@PreviousPageType%>
<%@Reference%>
<%@Register%>
----------------------------------------------------
[
["page-directive tag", [
["page-directive tag", "<%@Assembly"],
["attr-name", [
"foo"
]],
["attr-value", [
["punctuation", "="],
["punctuation", "\""],
"bar",
["punctuation", "\""]
]],
["page-directive tag", "%>"]
]],
["page-directive tag", [
["page-directive tag", "<% @Control"],
["attr-name", [
"foo"
]],
["attr-value", [
["punctuation", "="],
["punctuation", "\""],
"bar",
["punctuation", "\""]
]],
["page-directive tag", "%>"]
]],
["page-directive tag", [
["page-directive tag", "<%@ Implements"],
["page-directive tag", "%>"]
]],
["page-directive tag", [
["page-directive tag", "<%@Import"],
["page-directive tag", "%>"]
]],
["page-directive tag", [
["page-directive tag", "<%@Master"],
["page-directive tag", "%>"]
]],
["page-directive tag", [
["page-directive tag", "<%@MasterType"],
["page-directive tag", "%>"]
]],
["page-directive tag", [
["page-directive tag", "<%@OutputCache"],
["page-directive tag", "%>"]
]],
["page-directive tag", [
["page-directive tag", "<%@Page"],
["page-directive tag", "%>"]
]],
["page-directive tag", [
["page-directive tag", "<%@PreviousPageType"],
["page-directive tag", "%>"]
]],
["page-directive tag", [
["page-directive tag", "<%@Reference"],
["page-directive tag", "%>"]
]],
["page-directive tag", [
["page-directive tag", "<%@Register"],
["page-directive tag", "%>"]
]]
]
----------------------------------------------------
Checks for all page directives.