Difference between revisions of "Module:Documentation"

Jump to navigation Jump to search
simplify the content function
en>Mr. Stradivarius
(need to check type as well)
en>Mr. Stradivarius
(simplify the content function)
Line 505: Line 505:


function p._content(args, env)
function p._content(args, env)
-- Get the /doc title object
local success, docTitle = env:grab('docTitle')
if not success then
return docTitle -- docTitle is an error message
end
-- Get the documentation content.
local content = args.content
local content = args.content
if not content then
if not content and docTitle.exists then
local docpage = args[1]
local frame = mw.getCurrentFrame()
if docpage and mw.title.new(docpage).exists then
content = frame:preprocess('{{ ' .. docTitle.prefixedText .. ' }}')
local frame = mw.getCurrentFrame()
content = frame:preprocess('{{ ' .. docpage .. ' }}')
else
docpage = env.docspace .. ':' .. env.templatePage .. '/' .. message('docSubpage', 'string')
if mw.title.new(docpage).exists then
local frame = mw.getCurrentFrame()
content = frame:preprocess('{{ ' .. docpage .. ' }}')
end
end
end
end
-- The line breaks below are necessary so that "=== Headings ===" at the start and end
-- The line breaks below are necessary so that "=== Headings ===" at the start and end
Anonymous user

Navigation menu