Módulo:Cite web

Revisão em 00h45min de 14 de maio de 2024 por Jaewoo (discussão | contribs) (Criou a página com "local p = {} local CS1 = require('Módulo:Citação/CS1') p[''] = function(frame) local newFrame = { getParent = function(self) return frame end, getTitle = function(self) return 'Predefinição:Citar web' end, args = {CitationClass='web'} } setmetatable(newFrame, { __index = function(t, k) if type(frame[k]) == 'function' then return function(...) return frame[k](frame, select(2, ...)) end else return fra...")
(dif) ← Revisão anterior | Revisão atual (dif) | Revisão seguinte → (dif)

A documentação para este módulo pode ser criada na página Módulo:Cite web/doc

local p = {}
local CS1 = require('Módulo:Citação/CS1')
p[''] = function(frame)
	local newFrame = {
					getParent = function(self)
						return frame
					end,
					getTitle = function(self)
						return 'Predefinição:Citar web'
					end,
					args = {CitationClass='web'}
	}
	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