Module:documentation: Difference between revisions

From Laenkea
Jump to navigation Jump to search
(Created page with "local export = {} function export.show(frame) local source = frame.args[1] or frame.args["source"] local doc = ((type(source) == "string" and source ~= "") and mw.title.new(source)) or mw.title.new(mw.title.getCurrentTitle().fullText .. "/documentation") return '<div class="documentation">\n' .. title:getContent() .. "\n</div>" end return export")
 
No edit summary
Line 5: Line 5:
local doc = ((type(source) == "string" and source ~= "") and mw.title.new(source))
local doc = ((type(source) == "string" and source ~= "") and mw.title.new(source))
or mw.title.new(mw.title.getCurrentTitle().fullText .. "/documentation")
or mw.title.new(mw.title.getCurrentTitle().fullText .. "/documentation")
return '<div class="documentation">\n' .. title:getContent() .. "\n</div>"
return '<div class="documentation">\n' .. doc:getContent() .. "\n</div>"
end
end


return export
return export

Revision as of 13:09, 5 August 2023

Documentation for this module may be created at Module:documentation/documentation

local export = {}

function export.show(frame)
	local source = frame.args[1] or frame.args["source"]
	local doc = ((type(source) == "string" and source ~= "") and mw.title.new(source))
		or mw.title.new(mw.title.getCurrentTitle().fullText .. "/documentation")
	return '<div class="documentation">\n' .. doc:getContent() .. "\n</div>"
end

return export