Module:Sandbox
From Pathfinder Wiki
Revision as of 20:55, 18 July 2021 by DesignerThan (talk | contribs)
Documentation for this module may be created at Module:Sandbox/doc
local p = {}
local utilities = require ( "Module:Utilities" )
function p.expandTemplate( frame )
mw.log(frame:expandTemplate{ title = 'User:DesignerThan/Sandbox/expandTemplate' })
end
function p.lst( frame )
mw.log('Test')
local strFromTrans = frame:callParserFunction( '#lst', { 'Localization:All/de', 'LoremIpsum' })
mw.log('strFromTrans: |'..strFromTrans..'|')
end
function p.testLocalize( frame )
local retVal = utilities.localize( 'Requirements' )
mw.log('retVal: '..retVal)
end
function p.variableScope( frame )
if ( globalVar == nil ) then
mw.log( 'globalVar == nil')
end
globalVar = 'test'
mw.log('globalVar: '..globalVar)
end
return p