モジュール:File linkのソース a=nukar
あなたには “Tan sosの編集” を行う ciunkore tum ka sak. 理由は以下の通りです:
Tan sosのソースの閲覧やコピーが easkay.
-- This module provides a library for formatting file wikilinks.
local yesno = require('Module:Yesno')
local checkType = require('libraryUtil').checkType
local p = {}
function p._main(args)
checkType('_main', 1, args, 'table')
-- This is basically libraryUtil.checkTypeForNamedArg, but we are rolling our
-- own function to get the right error level.
local function checkArg(key, val, level)
if type(val) ~= 'string' then
error(string.format(
"'_main'関数における'%s'引数のタイプエラー(想定:文字列、実際:%s)",
key, type(val)
), level)
end
end
000
1:0
モジュール:File link に戻る.