In this example I use ExcelProGen to generate HTML documents.
Here I will show you how it is possible to generate html from your templates by using Excel.
Here you can see the template file with placeholders (template.html):
<html><head><title>%tag%</title></head>
<body>
<h1>Messkreis: %tag%</h1>
<p><b>Beschreibung:</b> %description%</p> <p><b>Messbereich:</b> %min%-%max% %unit%</p>
</body>
After the generation process you will see the following files in your output path:
<html><head><title>LI001</title></head>
<body>
<h1>Messkreis: LI001</h1> <p><b>Beschreibung:</b> Füllstand Tank</p>
<p><b>Messbereich:</b> 0-100 %</p>
</body>