├── .gitignore ├── .tape.js ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── index.js ├── package.json └── test ├── basic.base64.expect.css ├── basic.css ├── basic.expect.css ├── border-image.css ├── border-image.expect.css ├── g.css ├── g.expect.css ├── path.css ├── path.expect.css ├── text.css └── text.expect.css /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log 3 | test/*.result.css 4 | -------------------------------------------------------------------------------- /.tape.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csstools/postcss-write-svg/HEAD/.tape.js -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csstools/postcss-write-svg/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csstools/postcss-write-svg/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csstools/postcss-write-svg/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csstools/postcss-write-svg/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csstools/postcss-write-svg/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csstools/postcss-write-svg/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csstools/postcss-write-svg/HEAD/package.json -------------------------------------------------------------------------------- /test/basic.base64.expect.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csstools/postcss-write-svg/HEAD/test/basic.base64.expect.css -------------------------------------------------------------------------------- /test/basic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csstools/postcss-write-svg/HEAD/test/basic.css -------------------------------------------------------------------------------- /test/basic.expect.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csstools/postcss-write-svg/HEAD/test/basic.expect.css -------------------------------------------------------------------------------- /test/border-image.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csstools/postcss-write-svg/HEAD/test/border-image.css -------------------------------------------------------------------------------- /test/border-image.expect.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csstools/postcss-write-svg/HEAD/test/border-image.expect.css -------------------------------------------------------------------------------- /test/g.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csstools/postcss-write-svg/HEAD/test/g.css -------------------------------------------------------------------------------- /test/g.expect.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csstools/postcss-write-svg/HEAD/test/g.expect.css -------------------------------------------------------------------------------- /test/path.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csstools/postcss-write-svg/HEAD/test/path.css -------------------------------------------------------------------------------- /test/path.expect.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csstools/postcss-write-svg/HEAD/test/path.expect.css -------------------------------------------------------------------------------- /test/text.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csstools/postcss-write-svg/HEAD/test/text.css -------------------------------------------------------------------------------- /test/text.expect.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csstools/postcss-write-svg/HEAD/test/text.expect.css --------------------------------------------------------------------------------