stringtranslate.com

Módulo: Libro de citas

local p = {}local CS1 = require('Module:Citation/CS1')p[''] = function(frame)local newFrame = { getParent = function(self) return frame end, getTitle = function(self) return 'Template:Cite book' end, args = {CitationClass='book'}}setmetatable(newFrame, {__index = function(t, k)if type(frame[k]) == 'function' thenreturn function(...)return frame[k](frame, select(2, ...))endelsereturn frame[k]endend})return CS1.citation(newFrame)endreturn p