Module:TestAdjuster: Difference between revisions
From Teriock
More actions
No edit summary Tag: Manual revert |
No edit summary |
||
| (2 intermediate revisions by the same user not shown) | |||
| Line 2: | Line 2: | ||
function p.testReplace(frame) | function p.testReplace(frame) | ||
local content = frame.args[1] or "No input provided." | -- Check for content as a positional or named argument | ||
local replacedContent = content:gsub(" | local content = frame.args[1] or frame.args.content or "No input provided." | ||
local replacedContent = content:gsub("==", "===") | |||
return replacedContent -- Only return the modified string | return replacedContent -- Only return the modified string | ||
end | end | ||
return p | return p | ||
Latest revision as of 02:26, 26 December 2024
Documentation for this module may be created at Module:TestAdjuster/doc