Module:TemplateStarter: Difference between revisions

// via Wikitext Extension for VSCode
// via Wikitext Extension for VSCode
Tag: Reverted
Line 163: Line 163:
     local templates = p.getAvailableTemplates()
     local templates = p.getAvailableTemplates()
     if #templates == 0 then
     if #templates == 0 then
         return "No templates available"
         return "<nowiki>No templates available</nowiki>"
     end
     end
     return table.concat(templates, ", ")
     return "<nowiki>" .. table.concat(templates, ", ") .. "</nowiki>"
end
end


return p
return p