Module

TemplateSource

From Dogcraft Wiki

Revision as of 18:20, 31 January 2026 by Domino (talk | contribs) (Created page with "local p = {} function p.templateSource(frame) frame:expandTemplate{ title = 'tutorial', args = {} } end return p")

Meant to be used with the {{Template source}} template. Returns the plaintext contents of a template. Obeys the mostly the same behaviours as transclusion would, respects <onlyinclude>, <includeonly>, and <noinclude> tags. This module is primarily meant to be used as input to <syntaxhighlight>, which doesn't handle some tags (like <templatestyles> or <categorytree>) correctly.

Example

The source of the {{Pagetabs}} template, wrapped in a <syntaxhighlight> tag.

{{#tag:syntaxhighlight|{{#invoke:TemplateSource|templateSource|Template:Pagetabs}}|lang=html|line=1}} generates:


local p = {}

function p.templateSource(frame)
	frame:expandTemplate{ title = 'tutorial', args = {} }
end

return p
This page was last modified on 31 January 2026, at 18:20. (2 days ago)