Difference between revisions of "Module:ISBNT"
Jump to navigation
Jump to search
w>JJMC89 m (Protected "Module:ISBNT": Highly visible module ([Edit=Require template editor access] (indefinite) [Move=Require template editor access] (indefinite))) |
m (1 revision imported) |
(No difference)
|
Latest revision as of 09:46, 15 October 2019
Documentation for this module may be created at Module:ISBNT/doc
-- This module implements [[Template:ISBNT]] local p = {} function p.link(frame) local check_isbn = require( "Module:Check isxn" ).check_isbn local isxns = mw.text.split(frame.args[1] or frame:getParent().args[1] or '', "%s*,%s*") local res = {} for i, isxn in ipairs(isxns) do table.insert(res, '[[Special:BookSources/' .. isxn .. '|' .. isxn .. ']]' .. check_isbn({['args'] = {isxn, ['error'] = '<span class="error" style="font-size:88%">Check ISBN</span>' .. frame:preprocess('{{main other|[[Category:Pages with ISBN errors]]}}')}}) ) end return table.concat(res, ', ') end return p