pc__search_id_in_html

0.0.1 • Public • Published

Search id in HTML

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

An example of using:

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

Where:

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

An example of HTML code:

<p id="someIdA"></p>
<p id="someIdB"></p>

An example of a result searching:

{
    "someIdA": 1,
    "someIdB": 1
}

Package Sidebar

Install

npm i pc__search_id_in_html

Weekly Downloads

1

Version

0.0.1

License

none

Last publish

Collaborators

  • bakhirev