Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
mincss
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Taddeüs Kroes
mincss
Commits
25a45dbd
Commit
25a45dbd
authored
10 years ago
by
Taddeüs Kroes
Browse files
Options
Downloads
Patches
Plain Diff
More lowercasing
parent
4d667f19
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
parser.mly
+3
-3
3 additions, 3 deletions
parser.mly
with
3 additions
and
3 deletions
parser.mly
+
3
−
3
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
^
")"
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment