Module:ISBNT
Appearance
मॉड्यूल बिबरनलेख[बनाईं]
You might want to बनाईं a documentation page for this Scribunto module. संपादक लोग एह मॉड्यूल के अभ्यासपन्ना (सैंडबाक्स) (बनाईं | मिरर करीं) आ टेस्टकेस (बनाईं) पन्ना पर अभ्यास भा प्रयोग (टेस्टिंग) क सकत बाटे। अनुरोध बा कि अगर श्रेणी जोड़े के होखे तब /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