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 15:22, 30 April 2019 (saving my progress). 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(frame)
	local text = frame.args[1]
    return string.match(frame, "^\\[\\[")
    end

function p.wrapInLink(frame)
	local text = frame.args[1]
  if string.match(text, "^\\[\\[") then
    return text
  end

  return '[[' .. text .. ']]'
end

return p