Module:Sandbox

Lua

CodeDiscussionEditHistoryLinksLink count Subpages:DocumentationTestsResultsSandboxLive code All modules

This module is meant for testing your ideas. Any function could disappear or be changed at any moment so do not use any of them for things other than testing.

See also: Module:Test

Code

local p = {} --p stands for package

function p.getcaption(frame)
    local id = frame.args[1]
    local caption = mw.wikibase.getLabel(id)
    return caption or "No caption found"
end

return p