Module:CargoNotes

From Mizuumi Wiki
Revision as of 11:01, 27 January 2024 by Mactonya (talk | contribs) (Created page with "local p = {} function p.drawDataNotes(frame) local name = frame.args[1] local wikitext = "" if (name ~= "") then wikitext = "'''" .. name .. ":'''\n" end for token in string.gmatch(frame.args[2], '([^;\\]+)') do note = token wikitext = wikitext .. "*" .. note .. "\n" end return wikitext end return p")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

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

local p = {}

function p.drawDataNotes(frame)
  local name = frame.args[1]

  local wikitext = ""

  if (name ~= "")
  then
    wikitext = "'''" .. name .. ":'''\n"
  end
  
  for token in string.gmatch(frame.args[2], '([^;\\]+)') do
    note = token

    wikitext = wikitext .. "*" .. note .. "\n"

  end

  return wikitext
end

return p