postcss-content-entity
v0.2.0
Published
PostCSS plugin that allows to use html entities inside css content property
Maintainers
Readme
PostCSS Content Entity 
PostCSS plugin that allows to use html entities inside css content property.
.foo:after {
/* Input example */
content: '×'
}.foo:after {
/* Output example */
content: '\d7;'
}Install
NPM:
npm i postcss-content-entityYarn:
yarn add postcss-content-entityUsage
and use it with post css
postcss([ require('postcss-content-entity') ])See PostCSS docs for examples for your environment.
