உள்ளடக்கத்துக்குச் செல்

Module:Citation/CS2

கட்டற்ற கலைக்களஞ்சியமான விக்கிப்பீடியாவில் இருந்து.
Pagers (பேச்சு | பங்களிப்புகள்) பயனரால் செய்யப்பட்ட 08:45, 14 அக்டோபர் 2023 அன்றிருந்தவாரான திருத்தம் ("local p = {} local CS1 = require('Module:Citation/CS1') p[''] = function(frame) local newFrame = { getParent = function(self) return frame end, getTitle = function(self) return 'Template:Citation' end, args = {CitationClass='citation'} } setmetatable(newFrame, { __index = function(t, k) if type(frame[k]) == 'function'..."-இப்பெயரில் புதிய பக்கம் உருவாக்கப்பட்டுள்ளது)
(வேறுபாடு) ← பழைய திருத்தம் | புதிய திருத்தத்தைப் பார்க்கவும். (வேறுபாடு) | புதிய திருத்தம் → (வேறுபாடு)

Documentation for this module may be created at Module:Citation/CS2/doc

local p = {}
local CS1 = require('Module:Citation/CS1')

p[''] = function(frame)
	local newFrame = {
	    getParent = function(self)
	    	return frame
	    end,
	    getTitle = function(self)
	    	return 'Template:Citation'
	    end,
	    args = {CitationClass='citation'}
	}
	setmetatable(newFrame, {
		__index = function(t, k)
			if type(frame[k]) == 'function' then
				return function(...)
					return frame[k](frame, select(2, ...))
				end
			else
				return frame[k]
			end
		end
	})
	return CS1.citation(newFrame)
end

return p
"https://ta.wikipedia.org/w/index.php?title=Module:Citation/CS2&oldid=3809402" இலிருந்து மீள்விக்கப்பட்டது