Module:Test

From Elwiki
Revision as of 12:10, 3 April 2022 by Ritsu (talk | contribs)

Documentation for this module may be created at Module:Test/doc

local p = {}
function p.main(frame)
    local passive = frame:preprocess("{{:Dark Force}}")
    if string.match(passive, "%d%.%d,%s%d%.%d") then
        return 'matched'
    else
        return passive
    end
end
return p