Skip to content

Commit 3db6da5

Browse files
committed
docs: kinting and remove testen badges
1 parent 6f72df5 commit 3db6da5

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

readme.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
> [PostCSS](https://github.com/postcss/postcss) plugin adds a namespace/prefix to attribute selector.
44
5-
[![Travis Build Status](https://img.shields.io/travis/GitScrum/postcss-attribute-selector-prefix/master.svg?style=flat-square&label=unix)](https://travis-ci.org/GitScrum/postcss-attribute-selector-prefix)[![AppVeyor Build Status](https://img.shields.io/appveyor/ci/GitScrum/postcss-attribute-selector-prefix/master.svg?style=flat-square&label=windows)](https://ci.appveyor.com/project/GitScrum/postcss-attribute-selector-prefix)[![testen badge](https://img.shields.io/badge/testen-passing-brightgreen.svg?style=flat-square)][testen repo][![node](https://img.shields.io/node/v/postcss-attribute-selector-prefix.svg?maxAge=2592000&style=flat-square)]()[![npm version](https://img.shields.io/npm/v/postcss-attribute-selector-prefix.svg?style=flat-square)](https://www.npmjs.com/package/postcss-attribute-selector-prefix)[![Dependency Status](https://david-dm.org/gitscrum/postcss-attribute-selector-prefix.svg?style=flat-square)](https://david-dm.org/gitscrum/postcss-attribute-selector-prefix)[![XO code style](https://img.shields.io/badge/code_style-XO-5ed9c7.svg?style=flat-square)](https://github.com/sindresorhus/xo)[![Coveralls status](https://img.shields.io/coveralls/GitScrum/postcss-attribute-selector-prefix.svg?style=flat-square)](https://coveralls.io/r/GitScrum/postcss-attribute-selector-prefix)
5+
[![Travis Build Status](https://img.shields.io/travis/GitScrum/postcss-attribute-selector-prefix/master.svg?style=flat-square&label=unix)](https://travis-ci.org/GitScrum/postcss-attribute-selector-prefix)[![AppVeyor Build Status](https://img.shields.io/appveyor/ci/GitScrum/postcss-attribute-selector-prefix/master.svg?style=flat-square&label=windows)](https://ci.appveyor.com/project/GitScrum/postcss-attribute-selector-prefix)[![node](https://img.shields.io/node/v/postcss-attribute-selector-prefix.svg?maxAge=2592000&style=flat-square)]()[![npm version](https://img.shields.io/npm/v/postcss-attribute-selector-prefix.svg?style=flat-square)](https://www.npmjs.com/package/postcss-attribute-selector-prefix)[![Dependency Status](https://david-dm.org/gitscrum/postcss-attribute-selector-prefix.svg?style=flat-square)](https://david-dm.org/gitscrum/postcss-attribute-selector-prefix)[![XO code style](https://img.shields.io/badge/code_style-XO-5ed9c7.svg?style=flat-square)](https://github.com/sindresorhus/xo)[![Coveralls status](https://img.shields.io/coveralls/GitScrum/postcss-attribute-selector-prefix.svg?style=flat-square)](https://coveralls.io/r/GitScrum/postcss-attribute-selector-prefix)
66

77
[![npm downloads](https://img.shields.io/npm/dm/postcss-attribute-selector-prefix.svg?style=flat-square)](https://www.npmjs.com/package/postcss-attribute-selector-prefix)[![npm](https://img.shields.io/npm/dt/postcss-attribute-selector-prefix.svg?style=flat-square)](https://www.npmjs.com/package/postcss-attribute-selector-prefix)[![Greenkeeper badge](https://badges.greenkeeper.io/GitScrum/postcss-attribute-selector-prefix.svg?style=flat-square)](https://greenkeeper.io/)
88

@@ -20,19 +20,19 @@ $ npm install postcss-attribute-selector-prefix
2020
## Usage
2121

2222
```js
23-
// dependencies
23+
// Dependencies
2424
var fs = require('fs');
2525
var postcss = require('postcss');
2626
var attrSelectorPrefix = require('postcss-attribute-selector-prefix');
2727

28-
// css to be processed
28+
// CSS to be processed
2929
var css = fs.readFileSync('css/input.css', 'utf8');
3030

31-
// process css
31+
// Process css
3232
var output = postcss()
33-
.use(attrSelectorPrefix({prefix: 'test-'}))
34-
.process(css)
35-
.css;
33+
.use(attrSelectorPrefix({prefix: 'test-'}))
34+
.process(css)
35+
.css;
3636

3737
console.log(output);
3838
```

0 commit comments

Comments
 (0)