Documentation for this module may be created at Module:TA4TK:myTest/doc
-- Main table to hold all functions local p = {} p.hello = function( frame ) local str = "Hello World!" return str end p.hello_math = function( frame ) local str = "<math> sin </math>" return str end return p