modular-html

0.1.5 • Public • Published

modular-html

Ultra light-weight modular based HTML

Install

npm install -g modular-html

root.html

{%header.html%}
{%body.html%}
{%footer.html%}

header.html

<html>
<head>
</head>

body.html

<body>
  <div>
    {%a.html%}
    {%b.html%}
  </div>
</body>

footer.html

</html>

a.html

<span>Hello</span>

b.html

<span>World</span>

Build

modular-html ./root.html ./main.html

Result - main.html

<html>
<head>
</head>
<body>
  <div>
    <span>Hello</span>
    <span>World</span>
  </div>
</body>
</html>

Readme

Keywords

Package Sidebar

Install

npm i modular-html

Weekly Downloads

4

Version

0.1.5

License

MIT

Unpacked Size

2.01 kB

Total Files

3

Last publish

Collaborators

  • roecrew