Jump to content

Module:Test: Difference between revisions

no edit summary
No edit summary
No edit summary
 
Line 2: Line 2:


function p.output(frame)
function p.output(frame)
     -- The string you want to output
     -- Define the template to be expanded
     local outputString = 'Hello, World! {{pmid|19940465}}'
    local templateToExpand = {
        title = "pmid",
        args = { "19940465" }
    }
   
    -- Use frame:expandTemplate to process the template
    local expandedTemplate = frame:expandTemplate(templateToExpand)
   
    -- Concatenate the expanded template with your string
     local outputString = 'Hello, World! ' .. expandedTemplate
   
     return outputString
     return outputString
end
end


return p
return p
Cookies help us deliver our services. By using our services, you agree to our use of cookies.