Template:Howto: Difference between revisions

From Tygron Support wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 3: Line 3:
If more are needed, append:<br>
If more are needed, append:<br>
<nowiki>{{#if:{{{8|}}}|:# {{{8}}}}}</nowiki>
<nowiki>{{#if:{{{8|}}}|:# {{{8}}}}}</nowiki>
The template can be generated using javascript by executing the following function in javascript:
The template can be generated using javascript by executing the following function in javascript:



Revision as of 07:27, 26 August 2014

How to:

If more are needed, append:
{{#if:{{{8|}}}|:# {{{8}}}}}

The template can be generated using javascript by executing the following function in javascript:

var steps=20;
var string="{{#if:{{{file|}}}|<div class=\"editor_steps_box_wrapper\">}}<div class=\"editor_steps_box\">\n<span class=\"editor_steps_title\">'''How to{{#if:{{{title|}}}| {{{title}}}}}:'''</span>";
for(i=1;i<=steps;i++) {;
 string+="{{#if:{{{"+i+"|}}}|:# {{{"+i+"}}}}}";
}
string=string+"</div>{{#if:{{{file|}}}|<div class=\"editor_steps_image\">{{{file}}}</div></div>}}";