pc__search_class_in_html

0.0.1 • Public • Published

Search className in HTML

This is plugin for nmp-package "Post-Compression".
He's searching for the names of classes in the HTML code.

An example of using:

var searchClassNameInHTML = require("pc__search_class_in_html"),
    uniqueNames = {};
 
gulp.src("./*.html")
    .pipe(postCompression.search([
        searchClassNameInHTML()
    ], uniqueNames));    

Where:

  • uniqueNames - an object of type JSON with rules replace the long words to short words.

An example of HTML code:

<p class="someClassA"></p>
<p class="someClassA someClassB"></p>

An example of a result searching:

{
    "someClassA": 2,
    "someClassB": 1
}

Package Sidebar

Install

npm i pc__search_class_in_html

Weekly Downloads

1

Version

0.0.1

License

none

Last publish

Collaborators

  • bakhirev