More actions
getparent |
No edit summary |
||
(2 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
local p = {} | local p = {} | ||
local error = require('Module:error') | |||
function p.main(frame) | function p.main(frame) | ||
local args = frame:getParent().args | local args | ||
if frame.getParent then | |||
args = frame:getParent().args | |||
else | |||
args = frame.args | |||
end | |||
local result = '' | local result = '' | ||
if not args.book then | if not args.book then | ||
return ' | return error.error({ | ||
message = '<code>book</code> parameter is required' | |||
}) | |||
else | else | ||
result = formatBookTitle(args.book) | result = formatBookTitle(args.book) |
Latest revision as of 06:49, 16 January 2025
Documentation for this module may be created at Module:Cite book/doc
local p = {}
local error = require('Module:error')
function p.main(frame)
local args
if frame.getParent then
args = frame:getParent().args
else
args = frame.args
end
local result = ''
if not args.book then
return error.error({
message = '<code>book</code> parameter is required'
})
else
result = formatBookTitle(args.book)
end
if args.chapter then
if tonumber(chapter, 10) then
result = result .. ', chapter ' .. args.chapter
else
result = result .. ', ' .. args.chapter
end
end
if args.page then
result = result .. ', page ' .. args.page
elseif args.paragraph then
result = result .. ', paragraph ' .. args.paragraph
end
return result
end
function formatChapter(chapter)
if tonumber(chapter, 10) then
return 'chapter ' .. chapter
else
return chapter
end
end
function formatBookTitle(title)
local page = mw.title.new(title, 0)
if page and page.exists then
return '\'\'[[' .. title .. ']]\'\''
else
return '\'\'' .. title .. '\'\''
end
end
return p