Документацію для цього модуля можна створити у Модуль:CollectionOfWorks/документація

local books = mw.loadData('Модуль:CollectionOfWorks/Data')
local export = {}

function export.biblio( frame )
	local book = frame.args[1]
	local slash = frame.args[2]
	local link = books[book]
	local str = '// ?'
	
	if link then
		if link ~= '' then
			if slash == nil or slash == '' then
				str = '//'
			else
				str = ''
			end
			str = str .. ' {{fine|' .. link .. '}}'
		end
	end
	return frame:preprocess(str)
end

return export