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." local replacedContent = content:gsub("=", "bar") return replacedContent -- Only return the modified string end return p