GitXplorerGitXplorer
k

postcss-content-entity

public
18 stars
1 forks
0 issues

Commits

List of commits on branch master.
Unverified
ccb90f176022369f31b3a39a63330edc2131a724

code refactoring

kkomarnitskyi committed 8 years ago
Unverified
f4d175ad4828efbc25f60dadcec8595a25ceff67

Merge branch 'master' of https://github.com/komarnitskyi/postcss-content-entity

kkomarnitskyi committed 8 years ago
Unverified
58b04c1da1e54647aeb0230a23373b91cb5af2e5

fix function name

kkomarnitskyi committed 8 years ago
Unverified
adf8ad30c684815c0b113af6ed70bbc25b0879c3

0.2.0

kkomarnitskyi committed 8 years ago
Unverified
3c20780415d57c2c7448eb78e9ba987661679fcb

0.1.1

kkomarnitskyi committed 8 years ago
Unverified
fbe92f800f0f6ab66962411f3c0568e6e49f221c

change regexp, ignore non-existing entities

kkomarnitskyi committed 8 years ago

README

The README file for this repository.

PostCSS Content Entity Build Status

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-entity

Yarn:

yarn add postcss-content-entity

Usage

and use it with post css

postcss([ require('postcss-content-entity') ])

See PostCSS docs for examples for your environment.