peach a19a732be8 commit message | 2 år sedan | |
---|---|---|
.. | ||
CHANGELOG.md | 2 år sedan | |
LICENSE | 2 år sedan | |
README.md | 2 år sedan | |
index.js | 2 år sedan | |
package.json | 2 år sedan |
PostCSS plugin to replace overflow-wrap with word-wrap. May optionally retain both declarations.
/* before */
.foo {
overflow-wrap: break-word;
}
/* after */
.foo {
word-wrap: break-word;
}
/* before, when the option { method: 'copy' } is passed */
.foo {
overflow-wrap: break-word;
}
/* after */
.foo {
word-wrap: break-word;
overflow-wrap: break-word;
}
/* default usage, with no options (method = replace) */
postcss([ require('postcss-replace-overflow-wrap') ])
/* add word-wrap, but keep overflow-wrap */
postcss([ require('postcss-replace-overflow-wrap') ])({ method: 'copy' })
See PostCSS docs for examples for your environment.