Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
mincss
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Taddeüs Kroes
mincss
Commits
25a45dbd
Commit
25a45dbd
authored
Jul 21, 2014
by
Taddeüs Kroes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
More lowercasing
parent
4d667f19
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
parser.mly
parser.mly
+3
-3
No files found.
parser.mly
View file @
25a45dbd
...
...
@@ -230,7 +230,7 @@ simple_selector:
{
String
.
concat
""
addons
}
%
inline
element_addon
:
a
=
HASH
|
a
=
cls
|
a
=
attrib
|
a
=
pseudo
{
a
}
element_name
:
|
tag
=
IDENT
{
tag
}
|
tag
=
IDENT
{
String
.
lowercase
tag
}
|
STAR
{
"*"
}
cls
:
|
DOT
name
=
IDENT
...
...
@@ -238,13 +238,13 @@ cls:
attrib
:
|
LBRACK
S
*
left
=
IDENT
S
*
right
=
pair
(
RELATION
,
rel_value
)
?
RBRACK
{
let
right
=
match
right
with
None
->
""
|
Some
(
op
,
term
)
->
op
^
term
in
"["
^
left
^
right
^
"]"
}
"["
^
String
.
lowercase
left
^
right
^
"]"
}
%
inline
rel_value
:
|
S
*
id
=
IDENT
S
*
{
id
}
|
S
*
s
=
STRING
S
*
{
"
\"
"
^
s
^
"
\"
"
}
pseudo
:
|
COLON
id
=
IDENT
{
":"
^
id
}
{
":"
^
(
String
.
lowercase
id
)
}
|
COLON
f
=
FUNCTION
args
=
wslist
(
COMMA
,
simple_selector
)
RPAREN
{
":"
^
f
^
"("
^
String
.
concat
","
args
^
")"
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment