githubEdit

postcss-normalize-whitespace

Normalize whitespace with PostCSS.

Install

With npmarrow-up-right do:

npm install postcss-normalize-whitespace --save

Example

Input

h1{
    width: calc(10px - ( 100px / var(--test) )) 
}

Output

h1{
    width: calc(10px - 100px / var(--test))
}

Usage

See the PostCSS documentationarrow-up-right for examples for your environment.

Contributors

See CONTRIBUTORS.mdarrow-up-right.

License

MIT © Ben Briggsarrow-up-right

Last updated