Module:BadRefExample

From Wikipedia

Documentation for this module may be created at Module:BadRefExample/doc

p = {};

function p.test( frame )
    return frame:preprocess( "Bob<ref name='John'>My name is John</ref>" );
end

function p.test2( frame )
    return "Bob" .. frame:extensionTag{ name = "ref", args = {name= "John"}, content="My name is John" };
end

return p;