Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
csscom
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
csscom
Commits
2a9caac9
Commit
2a9caac9
authored
Dec 31, 2012
by
Taddeüs Kroes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Improved program description
parent
43ae7e48
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
3 deletions
+6
-3
csscom.py
csscom.py
+6
-3
No files found.
csscom.py
View file @
2a9caac9
...
...
@@ -22,7 +22,10 @@ def compress_css(css, combine_blocks=True, compress_whitespace=True,
def
parse_options
():
parser
=
ArgumentParser
(
description
=
'Just another CSS compressor.'
)
parser
=
ArgumentParser
(
description
=
'Just another CSS compressor. '
'If none of the compression options below (those starting with '
'"-c") are specified, all are enabled by default. If any are '
'specified, the others are not enabled.'
)
parser
.
add_argument
(
'files'
,
metavar
=
'FILE'
,
nargs
=
'+'
,
help
=
'CSS files to compress'
)
parser
.
add_argument
(
'-cw'
,
'--compress-whitespace'
,
action
=
'store_true'
,
...
...
@@ -52,8 +55,8 @@ def parse_options():
if
not
any
([
args
.
compress_whitespace
,
args
.
compress_color
,
args
.
compress_font
,
args
.
compress_dimension
,
args
.
combine_blocks
])
and
not
args
.
no_compression
:
args
.
compress_whitespace
=
args
.
compress_color
=
args
.
compress_font
=
\
args
.
compress_dimension
=
args
.
combine_blocks
=
True
args
.
compress_whitespace
=
args
.
compress_color
=
args
.
compress_font
\
=
args
.
compress_dimension
=
args
.
combine_blocks
=
True
return
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