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
cfccb863
Commit
cfccb863
authored
Jul 21, 2014
by
Taddeüs Kroes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added Comment constructor
parent
9a5848cf
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
0 deletions
+4
-0
stringify.ml
stringify.ml
+2
-0
types.ml
types.ml
+2
-0
No files found.
stringify.ml
View file @
cfccb863
...
@@ -130,6 +130,8 @@ let rec string_of_statement = function
...
@@ -130,6 +130,8 @@ let rec string_of_statement = function
|
Supports
(
condition
,
statements
)
->
|
Supports
(
condition
,
statements
)
->
"@supports "
^
stringify_condition
" "
condition
^
"@supports "
^
stringify_condition
" "
condition
^
block
(
cat
"
\n\n
"
string_of_statement
statements
)
block
(
cat
"
\n\n
"
string_of_statement
statements
)
|
Comment
text
->
"/*"
^
text
^
"*/"
let
string_of_stylesheet
=
cat
"
\n\n
"
string_of_statement
let
string_of_stylesheet
=
cat
"
\n\n
"
string_of_statement
...
...
types.ml
View file @
cfccb863
...
@@ -50,6 +50,8 @@ type statement =
...
@@ -50,6 +50,8 @@ type statement =
(* @keyframes <id> { <rulesets> } *)
(* @keyframes <id> { <rulesets> } *)
|
Supports
of
condition
*
statement
list
|
Supports
of
condition
*
statement
list
(* @supports <condition> { <rulesets> } *)
(* @supports <condition> { <rulesets> } *)
|
Comment
of
string
(* /* ... */ *)
type
stylesheet
=
statement
list
type
stylesheet
=
statement
list
...
...
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