본문으로 이동

모듈:links

위키낱말사전, 말과 글의 누리

이 모듈은 보호로 인하여 편집이 불가하여 업데이트가 진행되고 있지 않습니다.

대체 모듈

  • 모듈:also/link: 만약 새로운 links의 메서드가 필요하다면 이 모듈을 사용하세요.

관련 모듈


local export = {}

local gsub = mw.ustring.gsub

-- Strips all square brackets out or replaces them.
function export.remove_links(text)
	if type(text) == "table" then text = text.args[1] end; if not text then text = "" end

	text = text:gsub("%[%[[^|%]]-|", "")
	text = text:gsub("%[%[", "")
	text = text:gsub("%]%]", "")

	return text
end

return export