How to parse wiki markup in tags?
For example, I create a template to insert an iframe in my personal wiki page:
Template: iframelink contains:
<html>
<iframe src="http://www.{{{1}}}.com"></iframe>
</html>
However, I canβt pass anything {{{1}}} because it is inside the <html> tag.
What actions can be used to extend {{{1}}} in html tags?
source
share