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:37, 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.wrapInLink(str)
  if str:match("^\[\[") then
    return str
  else
  return '[[' .. str .. ']]'
  end
end

return p