cssesc
Last updated
Was this helpful?
Last updated
Was this helpful?
A JavaScript library for escaping CSS strings and identifiers while generating the shortest possible ASCII-only output.
This is a JavaScript library for while generating the shortest possible valid ASCII-only output.
(In comparison, cssesc is much more powerful.)
Feel free to fork if you see possible improvements!
Via :
In a browser:
In :
In Ruby using :
In Sass using :
cssesc(value, options)
By default, cssesc
returns a string that can be used as part of a CSS string. If the target is a CSS identifier rather than a CSS string, use the isIdentifier: true
setting (see below).
The optional options
argument accepts an object with the following options:
isIdentifier
The default value for the isIdentifier
option is false
. This means that the input text will be escaped for use in a CSS string literal. If you want to use the result as a CSS identifier instead (in a selector, for example), set this option to true
.
quotes
The default value for the quotes
option is 'single'
. This means that any occurences of '
in the input text will be escaped as \'
, so that the output can be used in a CSS string literal wrapped in single quotes.
If you want to use the output as part of a CSS string literal wrapped in double quotes, set the quotes
option to 'double'
.
wrap
The wrap
option takes a boolean value (true
or false
), and defaults to false
(disabled). When enabled, the output will be a valid CSS string literal wrapped in quotes. The type of quotes can be specified through the quotes
setting.
escapeEverything
The escapeEverything
option takes a boolean value (true
or false
), and defaults to false
(disabled). When enabled, all the symbols in the output will be escaped, even printable ASCII symbols.
The global default settings can be overridden by modifying the css.options
object. This saves you from passing in an options
object for every call to encode
if you want to use the non-default setting.
cssesc.version
A string representing the semantic version number.
cssesc
binaryTo use the cssesc
binary in your shell, simply install cssesc globally using npm:
After that you will be able to escape text for use in CSS strings or identifiers from the command line:
If the output needs to be a CSS identifier rather than part of a string literal, use the -i
/--identifier
option:
See cssesc --help
for the full list of options.
This function takes a value and returns an escaped version of the value where any characters that are not printable ASCII symbols are escaped using the shortest possible (but valid) .
This library supports the Node.js and browser versions mentioned in . For a version that supports a wider variety of legacy browsers and environments out-of-the-box, .
This library is available under the license.