Bước tới nội dung

Mô đun:Citation mode

Bách khoa toàn thư mở Wikipedia
require ('strict')local p = {}-- determine whether we're being called from a sandboxlocal 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 false, otherwise use supplied mode-- this prevents putting articles into "overriden mode" tracking categoryfunction p._main(mode)	return not cfg.global_cs1_config_t['Mode'] and modeendfunction p.main(frame)    return p._main(frame.args[1]) or ""endreturn p