UNPKG

regex-colorizer

Version:

Adds syntax highlighting to regular expressions for readability

27 lines (15 loc) 1.05 kB
# Regex Colorizer Adds syntax highlighting to regular expressions for readability. Currently, only the JavaScript regex flavor is supported, with extensions for web reality. Any regex features not supported by JavaScript are marked as errors, along with some edge cases that cause cross-browser grief. Use the following code to run Regex Colorizer for all elements on a page with class `regex`: ~~~ js // Don't run this line if you provide your own stylesheet RegexColorizer.addStyleSheet(); // Can provide a class name for elements to process (defaults to 'regex') RegexColorizer.colorizeAll(); ~~~ There is also a `RegexColorizer.colorizeText()` method that returns HTML with highlighting for the provided regex pattern string. See [Regex Colorizer's website](http://stevenlevithan.com/regex/colorizer/) for examples and more details. ## About Regex Colorizer copyright 2010-2012 by [Steven Levithan](http://stevenlevithan.com/). Released under the [MIT License](http://mit-license.org/). Fork me to show support, fix, and extend.