モジュール:Userboxのソースを表示
あなたには「このページの編集」を行う権限がありません。理由は以下の通りです:
このページのソースの閲覧やコピーができます。
-- This module implements {{userbox}}.
local categoryHandler = require('Module:Category handler').main
local p = {}
--------------------------------------------------------------------------------
-- Helper functions
--------------------------------------------------------------------------------
local function checkNum(val, default)
-- Checks whether a value is a number greater than or equal to zero. If so,
-- returns it as a number. If not, returns a default value.
val = tonumber(val)
if val and val >= 0 then
return val
else
return default
end
end
000
1:0
このページで使用されているテンプレート:
モジュール:Userbox に戻る。