aboutsummaryrefslogtreecommitdiff
path: root/test/lua/uppercase-header.lua
AgeCommit message (Collapse)AuthorFilesLines
2017-11-18Lua filters: preload text module (#4077)Albert Krewinkel1-0/+9
The `text` module is preloaded in lua. The module contains some UTF-8 aware string functions, implemented in Haskell. The module is loaded on request only, e.g.: text = require 'text' function Str (s) s.text = text.upper(s.text) return s end