打开/关闭搜索
搜索
打开/关闭菜单
60
73
29
1.1K
武外梗百科
导航
首页
最近更改
随机页面
站务
其他
友链
特殊页面
打开/关闭外观设置菜单
通知
打开/关闭个人菜单
未登录
未登录用户的IP地址会在进行任意编辑后公开展示。
user-interface-preferences
个人工具
讨论
贡献
创建账号
登录
编辑“︁
Module:PageSummary
”︁
武外梗百科 爱国好学自强图新的百科全书
查看
阅读
编辑
查看历史
associated-pages
模块
讨论
更多操作
Zelda110
(
留言
|
贡献
)
2025年12月21日 (日) 17:39的版本
(
差异
)
←上一版本
|
最后版本
(
差异
) |
下一版本→
(
差异
)
警告:您正在编辑该页面的旧版本。
如果您发布该更改,该版本后的所有更改都会丢失。
警告:
您没有登录。如果您进行任何编辑,您的IP地址会公开展示。如果您
登录
或
创建账号
,您的编辑会以您的用户名署名,此外还有其他益处。
反垃圾检查。
不要
加入这个!
local p = {} -- 核心函数:通过计数平衡括号,彻底移除 [[File: ... ]] 及其嵌套内容 local function stripComplexTags(text) if not text then return "" end local result = text local i = 1 while true do -- 寻找可能的图片起始标签 local startPos = nil local patterns = {"%[%[[Ff]ile:", "%[%[[Ii]mage:", "%[%[文件:", "%[%[图像:"} local foundPat = nil for _, pat in ipairs(patterns) do local s = string.find(result, pat) if s and (not startPos or s < startPos) then startPos = s foundPat = pat end end if not startPos then break end -- 没有更多图片标签了 -- 从 startPos 开始寻找匹配的闭合括号 local count = 0 local endPos = nil for j = startPos, mw.ustring.len(result) do local char2 = mw.ustring.sub(result, j, j+1) if char2 == "[[" then count = count + 1 elseif char2 == "]]" then count = count - 1 if count == 0 then endPos = j + 1 break end end end if endPos then -- 移除整段图片代码 result = mw.ustring.sub(result, 1, startPos - 1) .. mw.ustring.sub(result, endPos + 1) else -- 如果没找到闭合(语法错误),强制跳过这个起始点,防止死循环 result = mw.ustring.sub(result, 1, startPos - 1) .. mw.ustring.sub(result, startPos + 2) end end return result end function p.getSummaryAndImage(frame) local pageName = frame.args[1] or "" local title = mw.title.new(pageName) if not title or not title.exists then return "页面不存在" end local content = title:getContent() -- 1. 提取第一张图(在清理前提取) local firstImage = string.match(content, "%[%[([Ff]ile:.-)[|%]]") or string.match(content, "%[%[([Ii]mage:.-)[|%]]") or string.match(content, "%[%[(文件:.-)[|%]]") or string.match(content, "%[%[(图像:.-)[|%]]") -- 2. 处理内容:预加载 1500 字符(处理长条目) local rawText = mw.ustring.sub(content, 1, 1500) -- A. 使用递归逻辑剥离图片 rawText = stripComplexTags(rawText) -- B. 移除模板 {{...}} - 同样使用平衡计数逻辑处理嵌套 while true do local s = string.find(rawText, "{{") if not s then break end local count = 0 local e = nil for j = s, mw.ustring.len(rawText) do local c2 = mw.ustring.sub(rawText, j, j+1) if c2 == "{{" then count = count + 1 elseif c2 == "}}" then count = count - 1 if count == 0 then e = j + 1 break end end end if e then rawText = mw.ustring.sub(rawText, 1, s - 1) .. mw.ustring.sub(rawText, e + 1) else rawText = mw.ustring.sub(rawText, 1, s - 1) .. mw.ustring.sub(rawText, s + 2) end end -- C. 移除标题符号、列表符、引用 rawText = string.gsub(rawText, "\n==+.-==+", " ") rawText = string.gsub(rawText, "\n%s*[*#:]+", " ") rawText = string.gsub(rawText, "<ref.-</ref>", "") rawText = string.gsub(rawText, "<ref.->", "") rawText = string.gsub(rawText, "<!%-%-.-%-%->", "") rawText = string.gsub(rawText, "&[Nn][Bb][Ss][Pp];", " ") rawText = string.gsub(rawText, "\n", " ") rawText = string.gsub(rawText, "%s+", " ") local cleanText = mw.text.trim(rawText) -- 3. 截断逻辑:150 字 local targetLen = 150 local summary = "" if mw.ustring.len(cleanText) <= targetLen then summary = cleanText else summary = mw.ustring.sub(cleanText, 1, targetLen) local restText = mw.ustring.sub(cleanText, targetLen + 1) -- 链接延展逻辑 local lastOpen = 0 local lastClose = 0 local tempPos = 0 while true do local found = string.find(summary, "%[%[", tempPos + 1) if not found then break end lastOpen = found tempPos = found end tempPos = 0 while true do local found = string.find(summary, "%]%]", tempPos + 1) if not found then break end lastClose = found tempPos = found end if lastOpen > lastClose then local endOfLink = string.find(restText, "%]%]") if endOfLink then summary = summary .. string.sub(restText, 1, endOfLink + 1) end end summary = summary .. "..." end -- 4. 渲染 local container = mw.html.create('div'):css({['margin']='15px 0', ['display']='flow-root'}) if firstImage then container:wikitext('[[' .. firstImage .. '|150px|right|link=' .. pageName .. ']]') end container:tag('div') :css({['font-size']='1.4em', ['font-weight']='bold', ['margin-bottom']='8px'}) :wikitext('[[' .. pageName .. ']]') container:tag('div') :css({['line-height']='1.6', ['color']='#202122'}) :wikitext(summary) return tostring(container) end return p
摘要:
请注意,所有对武外梗百科的贡献均可能会被其他贡献者编辑、修改或删除。如果您不希望您的文字作品被随意编辑,请不要在此提交。
您同时也向我们承诺,您提交的内容为您自己所创作,或是复制自公共领域或类似自由来源(详情请见
武外梗百科:著作权
)。
未经许可,请勿提交受著作权保护的作品!
取消
编辑帮助
(在新窗口中打开)
预览使用本模板的页面
该页面使用的模板:
Module:PageSummary/doc
(
编辑
)
编辑“︁
Module:PageSummary
”︁
武外梗百科 爱国好学自强图新的百科全书