posthtml / posthtml-each

Repeat your HTML-elements with attribute
Other
6 stars 0 forks source link

PostHTML Each

PostHTML Logo

nodedependenciesdevDependenciesBuild Status

PostHTML plugin that automatically repeat your content.

Usage

index.html

<!-- BEFORE -->
<div class="block" each="3"></div>

<!-- AFTER -->
<div class="block"></div>
<div class="block"></div>
<div class="block"></div>