No edit summary |
No edit summary |
||
Line 8: | Line 8: | ||
property = token | property = token | ||
wikitext = wikitext | wikitext = wikitext .. property .. "\n" | ||
end | end |
Revision as of 09:55, 3 April 2024
Documentation for this module may be created at Module:Properties-UMVC3/doc
local p = {} function p.drawDataProperties(frame) local wikitext = "" for token in string.gmatch(frame.args[1], '([^\\]+)') do property = token wikitext = wikitext .. property .. "\n" end return wikitext end return p