Module:Properties-UMVC3

From SuperCombo Wiki
Revision as of 10:59, 3 April 2024 by Kaladin (talk | contribs)

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

  end

  return wikitext
end

return p