Module:Properties-UMVC3

From SuperCombo Wiki
Revision as of 13:56, 12 May 2025 by Kaladin (talk | contribs) (Undo revision 328270 by Kaladin (talk))
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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 .. "<br/>"

  end

  return wikitext
end

return p