0.0.10 • Published 6 years ago

html-include-comment v0.0.10

Weekly downloads
1
License
MIT
Repository
github
Last release
6 years ago

html-include-comment

Simply include text partials via html (css/js) comments like this <!-- header.html -->

Install

$ npm install html-include-comment

Run

$ html-include-comment some/source.html some/dest.html

Usage

In your sourcefile add html, css or js comments to render the specified file content inline. The comments are getting replaced with the file contents.

<html>
  <head>
    <style>
      /* some/inline.css */
    </style>
  </head>
  <body>
    <!-- partials/header.html -->
    <!-- some/inline.svg -->
    <script>
      /* some/inline.js */
    </script>
  </body>
</html>

It works with both comment styles:

<!-- some/file.html -->

and

/* some/otherfile.css */

File type or extension does not matter (so it could be /* foo/bar.baz */ as well – as long as the file contains text content.

0.0.10

6 years ago

0.0.9

6 years ago

0.0.8

6 years ago

0.0.7

6 years ago

0.0.6

6 years ago

0.0.5

6 years ago

0.0.4

6 years ago

0.0.3

6 years ago

0.0.2

6 years ago

0.0.1

6 years ago