Module:Sandbox/K6ka/InfoboxLink

From The Sims Wiki, a collaborative database for The Sims series
This is an old revision of this page, as edited by K6ka (talk | contribs) at 14:52, 30 April 2019. The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
Jump to navigation Jump to search

Documentation for this module may be created at Module:Sandbox/K6ka/InfoboxLink/doc

local p = {}

function p.getTargetFromText(text)
    return string.match(str, '^\[\[')
    
end

function p.wrapInLink(str)
  if str:match('^\[\[') then
    return str
  end

  return '[[' .. str .. ']]'
end

return p