Actual page:
Code:
[template]Outer Template[/template]
Outer Template:
Code:
[template]Inner Template
|param=text that needs to be autolinked
[/template]
Inner Template:
Code:
layout with {{{param}}}
If I am understanding your setup correctly, you would just hardcode the wiki BB-Code inside "Outer Template." e.g.
Code:
[template]Inner Template
|param=text that [wiki]needs[/wiki] to be autolinked
[/template]
Alternatively, if you are implementing Outer Template like above (without passing parameters from the actual page), then you can try injecting it instead. Injection renders Outer Template separately, so in this case it would receive autolinks; however, it would not receive variables (such as [var]PAGETITLE[/var]) from "Actual page". Once it is rendered, it is pasted into "Actual page":
Code:
[inject]Outer Template[/inject]
You are limited in the number of injections that will be rendered on each page.
Bookmarks