Dokumentaci tohoto modulu lze vytvořit na stránce Nápověda:Modul:Source/Isenberg

	-- @brief
--  Data for {{Isenberg}}
-- 
local _module = {}
----------------------------------------


_module = {
	
	cite = "monografie",
	
	arguments = {
		["heslo"] = {
			description = "heslo",
			required = true,
			fillIn = "kapitola",
			fill = function( args )
				return args["heslo"]
			end
		},
		["díl"] = {
			description = "díl",
			required = true,
			fillIn = "svazek",
			fill = function( args )
				return args["díl"]
			end
		},
		["strany"] = {
			description = "citovaná strana či strany",
			required = true
		},
		["url"] = {
			description = "odkaz	 na online verzi",
			required = false,
			fill = function( args )
				local output
				if args["url"] then
					output = args["url"]
				else
					output = "https://archive.org/details/cu31924026888481"
				end
				return output
			end
		},
	},
	
	common = {
		["příjmení"] = "Isenberg",
		["jméno"] = "Charles William",
		["titul"] = "Dictionary of the Amharic Language in Two Parts.",
		["vydavatel"] = "Church Missionary Society",
		["místo"] = "London",
		["rok"] = 1841,
		["typ kapitoly"] = "heslo",
		["typ svazku"] = "díl"
	},
	
}


----------------------------------------
return _module