Jump to content

Module:User:Dragons flight/Test

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Dragons flight (talk | contribs) at 03:24, 4 April 2013. The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
t = {};

function t.test( frame )
    local a = frame.args[1];
    local b = mw.text.nowiki( 'hi' )
    
    frame:callParserFunction{ name = '#tag:ref', args = {
        'some text', name = 'foo', group = 'bar' } }
    frame:extensionTag( "ref", "bob", {} )
    return '';
end

return t;