summaryrefslogtreecommitdiff
path: root/textproc/lua-etlua
AgeCommit message (Collapse)AuthorFilesLines
2021-10-26textproc: Replace RMD160 checksums with BLAKE2s checksumsnia1-2/+2
All checksums have been double-checked against existing RMD160 and SHA512 hashes Unfetchable distfiles (fetched conditionally?): ./textproc/convertlit/distinfo clit18src.zip
2021-10-07textproc: Remove SHA1 hashes for distfilesnia1-2/+1
2020-07-02textproc: Add lua-etluania4-0/+48
Allows you to render ERB style templates but with Lua. Supports <% %>, <%= %> and <%- %> tags (with optional newline slurping) for embedding code. How it works: - Templates are transparently translated into Lua code and then loaded as a function. Rendering a compiled template is very fast. - Any compile time errors are rewritten to show the original source position in the template. - The parser is aware of strings so you can put closing tags inside of a string literal without any problems.