Jump to content

Module:Citation mode: Difference between revisions

From Wikipedia, the free encyclopedia
Content deleted Content added
m typo
fix logic
Line 11: Line 11:
-- if cs1 config is set, return mode from that, otherwise use supplied mode
-- if cs1 config is set, return mode from that, otherwise use supplied mode
function p._main(mode)
function p._main(mode)
return cfg.global_cs1_config_t['Mode'] or mode
return not cfg.global_cs1_config_t['Mode'] and mode
end
end



Revision as of 23:05, 12 June 2024

require ('strict')

local p = {}

-- determine whether we're being called from a sandbox
local isSandbox = mw.getCurrentFrame():getTitle():find('sandbox', 1, true)
local sandbox = isSandbox and '/sandbox' or ''

local cfg = mw.loadData ('Module:Citation/CS1/Configuration' .. sandbox)

-- if cs1 config is set, return mode from that, otherwise use supplied mode
function p._main(mode)
	return not cfg.global_cs1_config_t['Mode'] and mode
end

function p.main(frame)
	local getArgs = require('Module:Arguments').getArgs
	local args = getArgs(frame)
	return p._main(args[1]) or ""
end

return p