You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
944 B
Plaintext

7 years ago
# svgo
#
# SVG Optimizer: a Node.js-based tool for optimizing Scalable Vector Graphics
# files. It applies a series of transformation rules (plugins), which can be
# toggled individually.
7 years ago
# Optimize a file using the default plugins, overwriting the original file.
7 years ago
svgo test.svg
7 years ago
# Optimize a file and save the result to another file.
7 years ago
svgo test.svg test.min.svg
7 years ago
# Optimize all SVG files within a directory, overwriting the original files.
svgo -f path/to/directory/with/svg/files
7 years ago
# Optimize all SVG files within a directory and save the resulting files to
# another directory.
svgo -f path/to/input/dir -o path/to/output/dir
7 years ago
# Optimize SVG content passed from another command, then save result to a file.
7 years ago
cat test.svg | svgo -i - -o test.min.svg
7 years ago
# Optimize a file and print out the result.
7 years ago
svgo test.svg -o -
7 years ago
# Optimize a file making sure a given plugin is enabled.
7 years ago
svgo --enable=plugin_name
7 years ago
# Show available plugins.
7 years ago
svgo --show-plugins