No edit summary |
mNo edit summary |
||
(4 intermediate revisions by the same user not shown) | |||
Line 11: | Line 11: | ||
container:node(date) | container:node(date) | ||
end | end | ||
if args._pageName then | |||
container:wikitext(' [[' .. args._pageName .. ']]') | |||
if args. | |||
container:wikitext(' | |||
end | end | ||
if args. | --if args.author then | ||
-- local link = args.authorlink == nil and args.author or args.author .. '|' .. args.authorlink | |||
end | -- container:wikitext(' by [[' ..link .. ']]') | ||
--end | |||
return container | return container |
Latest revision as of 21:42, 23 February 2024
Documentation for this module may be created at Module:NewsItem/doc
local getArgs = require('Module:Arguments').getArgs local Flags = require('Module:Flags') local NewsItem = {} function NewsItem.main(frame) local args = getArgs(frame) local container = mw.html.create('span'):addClass('newsItem') if args.date then local date = mw.html.create('span'):addClass('news-date'):wikitext(mw.text.split(args.date, ' ')[1]) container:node(date) end if args._pageName then container:wikitext(' [[' .. args._pageName .. ']]') end --if args.author then -- local link = args.authorlink == nil and args.author or args.author .. '|' .. args.authorlink -- container:wikitext(' by [[' ..link .. ']]') --end return container end return NewsItem