Module:Citation: Difference between revisions

From ProleWiki, the proletarian encyclopedia
No edit summary
No edit summary
Line 12: Line 12:
if is_set (Author) then
if is_set (Author) then
if is_set (Year) then
if is_set (Year) then
return Author .. " (" .. Year .. ")" .. ". " .. "''" .. Title "''"
return Author .. " (" .. Year .. ")" .. ". " .. "''" .. Title .. "''"
else
else
return Author .. ". " .. "''" .. Title "''"
return Author .. ". " .. "''" .. Title .. "''"
end
end
end
end
end
end
return p
return p

Revision as of 19:36, 27 October 2021

local p = {}

local function is_set (var)
	return not (var == nil or var == '');
end

function p.cite( frame )
	local pframe = frame:getParent()
	local Author = pframe.args.author
	local Title = pframe.args.title
	local Year = pframe.args.year
	if is_set (Author) then
		if is_set (Year) then
			return Author .. " (" .. Year .. ")" .. ". " .. "''" .. Title .. "''"
			else
				return Author .. ". " .. "''" .. Title .. "''"
		end
	end
end
return p