modular-html
v0.1.5
Published
Ultra light-weight modular based HTML
Downloads
20
Readme
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>