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