LTemplater (Lukas' own templater), a templating utility written in Lua
This utility does just one thing: It takes the input piped into it and renders a template based on the input lines.
Use cat to pipe the lines in data.txt to be rendered using template.html
as template. The output is written in this case to redered.html
cat data.txt | lua main.lua template.html > rendered.htmlI felt the need to solve a simple task in a complicated way. (Use at own risk)