Documentation for this module may be created at Module:TestAdjuster/doc
local p = {} function p.testReplace(frame) local content = frame.args[1] or "No input provided." return content:gsub("foo", "bar") end return p