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,13 @@
FOOBAR
FOO_BAR_42
----------------------------------------------------
[
["constant", "FOOBAR"],
["constant", "FOO_BAR_42"]
]
----------------------------------------------------
Checks for constants.

View File

@ -0,0 +1,13 @@
foo(
foo_bar_42 (
----------------------------------------------------
[
["function", "foo"], ["punctuation", "("],
["function", "foo_bar_42"], ["punctuation", "("]
]
----------------------------------------------------
Checks for functions.

View File

@ -0,0 +1,59 @@
break
catch
case
class;
continue
default
else
extends;
final
for
if
implements;
import
new;
null
private
public
return
static
super
switch
this
try
void
while
----------------------------------------------------
[
["keyword", "break"],
["keyword", "catch"],
["keyword", "case"],
["keyword", "class"], ["punctuation", ";"],
["keyword", "continue"],
["keyword", "default"],
["keyword", "else"],
["keyword", "extends"], ["punctuation", ";"],
["keyword", "final"],
["keyword", "for"],
["keyword", "if"],
["keyword", "implements"], ["punctuation", ";"],
["keyword", "import"],
["keyword", "new"], ["punctuation", ";"],
["keyword", "null"],
["keyword", "private"],
["keyword", "public"],
["keyword", "return"],
["keyword", "static"],
["keyword", "super"],
["keyword", "switch"],
["keyword", "this"],
["keyword", "try"],
["keyword", "void"],
["keyword", "while"]
]
----------------------------------------------------
Checks for keywords.

View File

@ -0,0 +1,31 @@
< << <=
> >> >=
& &&
| ||
% ?
! !=
= ==
+ +=
- -=
* *=
/ /=
----------------------------------------------------
[
["operator", "<"], ["operator", "<<"], ["operator", "<="],
["operator", ">"], ["operator", ">>"], ["operator", ">="],
["operator", "&"], ["operator", "&&"],
["operator", "|"], ["operator", "||"],
["operator", "%"], ["operator", "?"],
["operator", "!"], ["operator", "!="],
["operator", "="], ["operator", "=="],
["operator", "+"], ["operator", "+="],
["operator", "-"], ["operator", "-="],
["operator", "*"], ["operator", "*="],
["operator", "/"], ["operator", "/="]
]
----------------------------------------------------
Checks for operators.

View File

@ -0,0 +1,31 @@
boolean
byte
char
color
double
float
int
XML
Foobar
Foo_bar_42
----------------------------------------------------
[
["type", "boolean"],
["type", "byte"],
["type", "char"],
["type", "color"],
["type", "double"],
["type", "float"],
["type", "int"],
["type", "XML"],
["type", "Foobar"],
["type", "Foo_bar_42"]
]
----------------------------------------------------
Checks for types.