0.1.5 • Published 6 years ago

modular-html v0.1.5

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

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>
0.1.5

6 years ago

0.1.4

6 years ago

0.1.3

6 years ago

0.1.2

6 years ago

0.1.1

6 years ago

0.1.0

6 years ago