모듈:ISBN
모듈 설명문서[만들기]
이 모듈에 대한 설명문서를 생성할 수 있습니다. 연습장 (생성 | 복제) 및 시험장 (생성) 문서에서 이 모듈을 실험할 수 있습니다. 분류는 /설명문서 하위 문서에 넣어주세요. 이 모듈에 딸린 문서. |
require('strict')
local p = {}
local getArgs = require('Module:Arguments').getArgs
local function check_isbn(args)
return require('Module:Check isxn').check_isbn({args = args})
end
local function error_message(message)
return require('Module:Error')['error']({message})
end
function p._ISBN(args)
if not args[1] then
return error_message('Missing ISBN')
end
local source = '[[Special:BookSources/' .. args[1] .. '|' .. (args[2] or 'ISBN') .. ' ' .. args[1] .. ']]'
local check = check_isbn({[1] = args[1], ['error'] = ' <span class="error" style="font-size:92%;">Invalid ISBN</span>'})
local cat = ''
if mw.title.getCurrentTitle():inNamespaces(0) then
cat = '[[Category:' .. 'Pages with ISBN errors' .. ']]'
end
return source .. check .. cat
end
function p.ISBN(frame)
return p._ISBN(getArgs(frame))
end
return p