This documentation is transcluded from Module:DidYouKnow/doc. Changes can be proposed in the talk page.
This module is unused.
This module is neither invoked by a template nor required/loaded by another module. If this is in error, make sure to add
{{Documentation}}
/{{No documentation}}
to the calling template's or parent's module documentation.Function list |
---|
L 4 — create_html L 23 — p.main |
local getArgs = require( 'Module:Arguments' ).getArgs
local p = {}
local function create_html(column,row,fact)
local card = mw.html.create("div")
:addClass("home-card home-card--col2 home-card--row3")
:addClass("home-card--col"..tostring(column))
:addClass("home-card--row"..tostring(row))
:tag("div")
:addClass("home-card__header")
:wikitext("Did you know")
:done()
:tag("div")
:addClass("home-card")
:addClass("home-card__label")
:css("border-width","0px")
:wikitext(fact)
:done()
:done()
return tostring(card)
end
function p.main(frame)
frame = frame
local args = getArgs(frame)
local facts = mw.loadJsonData("/facts.json").facts
return create_html(args.column or 2, args.row or 3,args.fact or facts[math.random(1,#facts)])..frame:extensionTag{name="templatestyles", args={src="Module:Dimensions/styles.css"}}
end
return p