更多操作
无编辑摘要 |
无编辑摘要 |
||
(未显示同一用户的30个中间版本) | |||
第5行: | 第5行: | ||
local input = args['内容'] | local input = args['内容'] | ||
local parsed_data = '' | local parsed_data = '' | ||
for line in input:gmatch("[^\r\n]+") do | for line in input:gmatch("[^\r\n]+") do | ||
local key, value = line:match("(.*)=(.*)") | local key, value = line:match("(.*)=(.*)") | ||
第16行: | 第15行: | ||
return parsed_data | return parsed_data | ||
end | end | ||
-- 识别用#分隔的数据 并用于展示提示框 | |||
function p.date(frame) | function p.date(frame) | ||
local args = frame.args | local args = frame.args | ||
local | local s = 1 | ||
local | local html2 = '' | ||
local txt1 = '' | |||
-- 判断一下是否包含# | |||
if string.match(args[1], "#") then | |||
return | for line in args[1]:gmatch("[^\r\n]+") do | ||
local key, value = line:match("(.*)#(.*)") | |||
if key and value then | |||
if s == 1 then | |||
txt1 = key..'<span style="color: var(--color-base--subtle);font-size: var(--font-size-x-small);"> ('..value..') </span>' | |||
end | |||
html2 = html2..key..'<span style="color: var(--color-base--subtle);font-size: var(--font-size-x-small);"> ('..value..') </span><br>' | |||
end | |||
s = s+1 | |||
end | |||
local html = '<span class="smw-highlighter"><span class="smwtext">'..txt1..'</span><span class="smwttcontent">'..html2..'</span></span>' | |||
return html | |||
else | |||
-- 没有就直接输出啦! | |||
return args[1] | |||
end | |||
end | |||
-- 只获取第一个 用于模板自动归类 | |||
function p.category(frame) | |||
local args = frame.args | |||
local s = 1 | |||
-- 判断一下是否包含# | |||
if string.match(args[1], "#") then | |||
for line in args[1]:gmatch("[^\r\n]+") do | |||
local key, value = line:match("(.*)#(.*)") | |||
if key and value then | |||
if s == 1 then | |||
return key | |||
end | |||
end | |||
s = s+1 | |||
end | |||
else | |||
-- 没有就直接输出啦! | |||
return args[1] | |||
end | |||
end | end | ||
return p | return p |
2024年5月19日 (日) 13:56的最新版本
脚本错误:函数“date2”不存在。
local p = {} -- 解析以=分割的信息 function p.jx(frame) local args = frame.args local input = args['内容'] local parsed_data = '' for line in input:gmatch("[^\r\n]+") do local key, value = line:match("(.*)=(.*)") if key and value then --print(key, "=", value) --parsed_data = parsed_data..'<p><strong>'..key.."</strong>:"..value..'</p>' parsed_data = parsed_data..'<tr class="infobox-col2"><th style="">'..key..'</th><td style=""><b>'..value..'</b></td></tr>' end end return parsed_data end -- 识别用#分隔的数据 并用于展示提示框 function p.date(frame) local args = frame.args local s = 1 local html2 = '' local txt1 = '' -- 判断一下是否包含# if string.match(args[1], "#") then for line in args[1]:gmatch("[^\r\n]+") do local key, value = line:match("(.*)#(.*)") if key and value then if s == 1 then txt1 = key..'<span style="color: var(--color-base--subtle);font-size: var(--font-size-x-small);"> ('..value..') </span>' end html2 = html2..key..'<span style="color: var(--color-base--subtle);font-size: var(--font-size-x-small);"> ('..value..') </span><br>' end s = s+1 end local html = '<span class="smw-highlighter"><span class="smwtext">'..txt1..'</span><span class="smwttcontent">'..html2..'</span></span>' return html else -- 没有就直接输出啦! return args[1] end end -- 只获取第一个 用于模板自动归类 function p.category(frame) local args = frame.args local s = 1 -- 判断一下是否包含# if string.match(args[1], "#") then for line in args[1]:gmatch("[^\r\n]+") do local key, value = line:match("(.*)#(.*)") if key and value then if s == 1 then return key end end s = s+1 end else -- 没有就直接输出啦! return args[1] end end return p