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

110 lines
3.0 KiB

3 months ago
  1. # [postcss][postcss]-svgo
  2. > Optimise inline SVG with PostCSS.
  3. ## Install
  4. With [npm](https://npmjs.org/package/postcss-svgo) do:
  5. ```
  6. npm install postcss-svgo --save
  7. ```
  8. ## Example
  9. ### Input
  10. ```css
  11. h1 {
  12. background: url('data:image/svg+xml;charset=utf-8,<?xml version="1.0" encoding="utf-8"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve"><circle cx="50" cy="50" r="40" fill="yellow" /></svg>');
  13. }
  14. h2 {
  15. background: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48IURPQ1RZUEUgc3ZnIFBVQkxJQyAiLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4iICJodHRwOi8vd3d3LnczLm9yZy9HcmFwaGljcy9TVkcvMS4xL0RURC9zdmcxMS5kdGQiPjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+PGNpcmNsZSBjeD0iNTAiIGN5PSI1MCIgcj0iNDAiIGZpbGw9InllbGxvdyIgLz48IS0tdGVzdCBjb21tZW50LS0+PC9zdmc+');
  16. }
  17. ```
  18. ### Output
  19. ```css
  20. h1 {
  21. background: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="%23ff0"/></svg>');
  22. }
  23. h2 {
  24. background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxjaXJjbGUgY3g9IjUwIiBjeT0iNTAiIHI9IjQwIiBmaWxsPSIjZmYwIi8+PC9zdmc+');
  25. }
  26. ```
  27. ## API
  28. ### `svgo([options])`
  29. #### options
  30. ##### encode
  31. Type: `boolean`
  32. Default: `undefined`
  33. If `true`, it will encode URL-unsafe characters such as `<`, `>` and `&`;
  34. `false` will decode these characters, and `undefined` will neither encode nor
  35. decode the original input. Note that regardless of this setting, `#` will
  36. always be URL-encoded.
  37. ##### plugins
  38. Optionally, you can customise the output by specifying the `plugins` option. You
  39. will need to provide the config in comma separated objects, like the example
  40. below. Note that you can either disable the plugin by setting it to `false`,
  41. or pass different options to change the default behaviour.
  42. ```js
  43. var postcss = require('postcss');
  44. var svgo = require('postcss-svgo');
  45. var opts = {
  46. plugins: [{
  47. removeDoctype: false
  48. }, {
  49. removeComments: false
  50. }, {
  51. cleanupNumericValues: {
  52. floatPrecision: 2
  53. }
  54. }, {
  55. convertColors: {
  56. names2hex: false,
  57. rgb2hex: false
  58. }
  59. }]
  60. };
  61. postcss([ svgo(opts) ]).process(css).then(function (result) {
  62. console.log(result.css)
  63. });
  64. ```
  65. You can view the [full list of plugins here][plugins].
  66. ## Usage
  67. See the [PostCSS documentation](https://github.com/postcss/postcss#usage) for
  68. examples for your environment.
  69. ## Contributors
  70. See [CONTRIBUTORS.md](https://github.com/cssnano/cssnano/blob/master/CONTRIBUTORS.md).
  71. ## License
  72. MIT © [Ben Briggs](http://beneb.info)
  73. [postcss]: https://github.com/postcss/postcss
  74. [plugins]: https://github.com/svg/svgo/tree/master/plugins