pc__search_id_in_html

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

Usage no npm install needed!

<script type="module">
  import pcSearchIdInHtml from 'https://cdn.skypack.dev/pc__search_id_in_html';
</script>

README

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
}