打开/关闭菜单
打开/关闭个人菜单
未登录
如果您进行任何编辑,您的IP地址会公开展示。

Module:Link capture

来自星际公民中文百科
Module documentation[view][edit][history][purge]
This documentation is transcluded from Module:Link capture/doc. Changes can be proposed in the talk page.

Module:Link capture implements the {{Link capture}} template.


local p = {}
function p.linkcapture(frame)
    local linkString = frame.args[1]  or ""
    local linkText = string.match(linkString, "%[%[([^%]]+)%]%]")
    local linkTextText = string.match(linkString, "%[%[[^%|]+%|([^%}]+)%]%]")
    
    if (linkTextText ~= nil) then
    	return linkTextText
    elseif (linkText ~= nil) then
    	return linkText
    else
    	return linkString
	end
end

return p
我们为您提供服务需要使用Cookie。使用我们的服务即表示您同意我们使用Cookie。