查看“模块:Row numbers”的源代码
←
模块:Row numbers
跳转至:
导航
、
搜索
因为以下原因,您没有权限编辑本页:
您所请求的操作仅限于该用户组的用户使用:
用户
您必须确认您的电子邮件地址才能编辑页面。请通过
系统设置
设置并确认您的电子邮件地址。
您可以查看与复制此页面的源代码。
local count; local hcount; --[[--------------------------< G E T _ C O U N T >------------------------------------------------------------ returns a counter value according to the keyword extracted from the table; maintains count and hcount. Inserts a space character ahead of <count> or <hcount> so that, in the case of negative indexes, the negation operator is not mistaken for part of the wikitable markup. Returns: | -<count> – a cell value instead of: |-<count> – row markup with extraneous text The keywords have the meanings: _row_count: use row counter value (count); the hold counter (hcount) is same as count _row_count_hold: use the value currently assigned to hcount; bump count but do not bump hcount ]] local function get_count (keyword) count = count + 1; -- always bump the count if '_row_count' == keyword then -- bump hcount, return new count value hcount = count; return ' ' .. count; -- insert a leading space ahead of count elseif '_row_count_hold' == keyword then -- current hcount value without increment return ' ' .. hcount; -- insert a leading space ahead of hcount end end --[[--------------------------< R O W _ N U M B E R S >-------------------------------------------------------- replaces keywords _row_count and _row_count_hold from the table in frame.args[1] ]] local function row_numbers (frame) local args = frame.args[1] and frame.args or frame:getParent().args; -- Only use if |index is a number; |index= may be omitted (nil), or empty string, or non-digit -- We subtract one because the get_count function increments this before use. count = (tonumber(args.index) or 1) - 1; local tbl_str; -- Find out if what we got for input has been wrapped in <nowiki>...</nowiki> tags if args[1]:match ('^%s*\127[^\127]*UNIQ%-%-nowiki%-%x%x%x%x%x%x%x%x%-QINU[^\127]*\127%s*$') then -- BUG. The <nowiki> trick does not work in VisualEditor, mobile app, or Special:ExpandTemplates. -- get the table from the nowiki tags passed as arguments tbl_str = mw.text.unstripNoWiki (args[1]); -- undo <nowiki>'s escaping of the wikitext (mw.text.decode (tbl_str); is too aggressive) tbl_str = tbl_str:gsub('<', '<'):gsub('>', '>'); else -- No MediaWiki bugs here (hopefully), but you need to escape = signs with {{=}} like normal. -- It is not possible to circumvent this because named parameters are not passed to Lua in a -- defined order, always have whitespace trimmed, etc. local parts = {} for _, str in ipairs(args) do table.insert(parts, str) end tbl_str = table.concat(parts, '|'); end -- if there is at least one of our special reserved words, replace it with a count return frame:preprocess (tbl_str:gsub('_row_count[_%w]*', get_count)); end --[[--------------------------< E X P O R T E D F U N C T I O N S >------------------------------------------ ]] return { row_numbers = row_numbers }
该页面使用的模板:
模块:Row numbers/doc
(
查看源代码
)
返回至
模块:Row numbers
。
导航菜单
个人工具
中文(中国大陆)
创建账户
登录
名字空间
模块
讨论
变种
视图
阅读
查看源代码
查看历史
更多
搜索
导航
首页
最近更改
随机页面
帮助
主分类
制图
竞速
Q&A
机关大全
相关程序
地图图鉴
相关网站
Ballance吧
Ballance QQ群
Ballance Discord群组
Speedrun.com
Ballance吧专区
导航贴
英雄榜
快捷访问
公共沙盒
贡献指南
赞助我们
工具
链入页面
相关更改
特殊页面
页面信息