lua-CodeGen


Perfection is achieved, not when there is nothing more to add, but when there is nothing left to take away.
— Antoine de Saint-Exupéry


Overview

lua-CodeGen is a "safe" template engine.

lua-CodeGen enforces a strict Model-View separation. Only 4 primitives are supplied :

  • attribute reference,
  • template include,
  • conditional include,
  • and template application (i.e., map operation).

lua-CodeGen allows to split template in small chunk, and encourages the reuse of them by inheritance.

Each chunk of template is like a rule of a grammar for an unparser generator.

lua-CodeGen is not dedicated to HTML, it could generate any kind of textual code.

References

The Terence Parr's articles :

Note : lua-CodeGen is not a port of Terence Parr's StringTemplate.

Lust is another Lua module based on StringTemplate.

Status

lua-CodeGen is in beta stage.

It's developed for Lua 5.1, 5.2, 5.3 & 5.4.

Download

lua-CodeGen source can be downloaded from GitHub.

Installation

Two variants are available, a pure Lua without dependency and a LPeg based.

lua-CodeGen is available via LuaRocks:

luarocks install lua-codegen

or manually, with:

make install.lua
# make install.lpeg

Test

The test suite requires the module lua-TestMore.

make test.lua
# make test.lpeg

Copyright © 2010-2019 François Perrad

This library is licensed under the terms of the MIT/X11 license, like Lua itself.