因为以下原因,您没有权限编辑本页:
您可以查看和复制此页面的源代码。
-- This module implements {{aligned table}}
local p = {}
local function isnotempty(s)
return s and s:match( '^%s*(.-)%s*$' ) ~= ''
end
function p.table(frame)
local args = (frame.args[3] ~= nil) and frame.args or frame:getParent().args
local entries = {}
local colclass = {}
local colstyle = {}
local cols = tonumber(args['cols']) or 2
-- create the root table
local root = mw.html.create('table')
-- add table style for fullwidth
if isnotempty(args['fullwidth']) then
root
000
1:0
本页使用的模板:
- 模板:High-use(查看源代码)
- 模板:Module other(查看源代码)
- 模板:Module rating(查看源代码)
- 模板:Ombox(查看源代码)
- 模板:Tl(查看源代码)
- 模块:Aligned table/doc(查看源代码)
- 模块:Arguments(查看源代码)
- 模块:Effective protection level(查看源代码)
- 模块:High-use(查看源代码)
- 模块:Message box(查看源代码)
- 模块:Message box/configuration(查看源代码)
- 模块:Message box/ombox.css(查看源代码)
- 模块:Transclusion count(查看源代码)
- 模块:Transclusion count/data/A(查看源代码)
- 模块:Yesno(查看源代码)