Template:Howto: Difference between revisions

From Tygron Support wiki
Jump to navigation Jump to search
No edit summary
m (Rudolf@tygron.nl moved page Template:Editor steps to Template:Howto)
(17 intermediate revisions by one other user not shown)
Line 1: Line 1:
{{#if:{{{file|}}}|<div class="editor_steps_box_wrapper">}}<div class="editor_steps_box"><span class="editor_steps_title">'''How to{{#if:{{{title|}}}| {{{title}}}}}:'''</span>{{#if:{{{1|}}}|:# {{{1}}}}}{{#if:{{{2|}}}|:# {{{2}}}}}{{#if:{{{3|}}}|:# {{{3}}}}}{{#if:{{{4|}}}|:# {{{4}}}}}{{#if:{{{5|}}}|:# {{{5}}}}}{{#if:{{{6|}}}|:# {{{6}}}}}{{#if:{{{7|}}}|:# {{{7}}}}}{{#if:{{{8|}}}|:# {{{8}}}}}{{#if:{{{9|}}}|:# {{{9}}}}}{{#if:{{{10|}}}|:# {{{10}}}}}{{#if:{{{11|}}}|:# {{{11}}}}}{{#if:{{{12|}}}|:# {{{12}}}}}{{#if:{{{13|}}}|:# {{{13}}}}}{{#if:{{{14|}}}|:# {{{14}}}}}{{#if:{{{15|}}}|:# {{{15}}}}}{{#if:{{{16|}}}|:# {{{16}}}}}{{#if:{{{17|}}}|:# {{{17}}}}}{{#if:{{{18|}}}|:# {{{18}}}}}{{#if:{{{19|}}}|:# {{{19}}}}}{{#if:{{{20|}}}|:# {{{20}}}}}</div>{{#if:{{{file|}}}|<div class="editor_steps_image">{{{file}}}</div></div>}}<noinclude>
{{#if:{{{file|}}}|<div class="editor_steps_box_wrapper">}}<div class="editor_steps_box"><p><span class="editor_steps_title">'''{{{preamble|How to}}}{{#if:{{{title|}}}|&nbsp;{{{title}}}}}:'''</span></p>{{#if:{{{1|}}}|{{{form|:#}}} {{{1}}}}}{{#if:{{{2|}}}|{{{form|:#}}} {{{2}}}}}{{#if:{{{3|}}}|{{{form|:#}}} {{{3}}}}}{{#if:{{{4|}}}|{{{form|:#}}} {{{4}}}}}{{#if:{{{5|}}}|{{{form|:#}}} {{{5}}}}}{{#if:{{{6|}}}|{{{form|:#}}} {{{6}}}}}{{#if:{{{7|}}}|{{{form|:#}}} {{{7}}}}}{{#if:{{{8|}}}|{{{form|:#}}} {{{8}}}}}{{#if:{{{9|}}}|{{{form|:#}}} {{{9}}}}}{{#if:{{{10|}}}|{{{form|:#}}} {{{10}}}}}{{#if:{{{11|}}}|{{{form|:#}}} {{{11}}}}}{{#if:{{{12|}}}|{{{form|:#}}} {{{12}}}}}{{#if:{{{13|}}}|{{{form|:#}}} {{{13}}}}}{{#if:{{{14|}}}|{{{form|:#}}} {{{14}}}}}{{#if:{{{15|}}}|{{{form|:#}}} {{{15}}}}}{{#if:{{{16|}}}|{{{form|:#}}} {{{16}}}}}{{#if:{{{17|}}}|{{{form|:#}}} {{{17}}}}}{{#if:{{{18|}}}|{{{form|:#}}} {{{18}}}}}{{#if:{{{19|}}}|{{{form|:#}}} {{{19}}}}}{{#if:{{{20|}}}|{{{form|:#}}} {{{20}}}}}
</div>{{#if:{{{file|}}}|<div class="editor_steps_image">{{{file}}}</div></div>}}<noinclude>
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:


<pre>
<pre>
var steps=20;
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|}}}|&nbsp;{{{title}}}}}:'''</span>";
var string="{{#if:{{{file|}}}|<div class=\"editor_steps_box_wrapper\">}}<div class=\"editor_steps_box\"><p><span class=\"editor_steps_title\">'''{{{preamble|How to}}}{{#if:{{{title|}}}|&nbsp;{{{title}}}}}:'''</span></p>";
for(i=1;i<=steps;i++) {;
for(i=1;i<=steps;i++) {;
  string+="{{#if:{{{"+i+"|}}}|:# {{{"+i+"}}}}}";
  string+="{{#if:{{{"+i+"|}}}|{{{form|:#}}} {{{"+i+"}}}}}";
}
}
string=string+"</div>{{#if:{{{file|}}}|<div class=\"editor_steps_image\">{{{file}}}</div></div>}}";
string=string+"\n</div>{{#if:{{{file|}}}|<div class=\"editor_steps_image\">{{{file}}}</div></div>}}";
</pre>
</pre>
</noinclude>
</noinclude>

Revision as of 14:02, 8 February 2019

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\"><p><span class=\"editor_steps_title\">'''{{{preamble|How to}}}{{#if:{{{title|}}}| {{{title}}}}}:'''</span></p>";
for(i=1;i<=steps;i++) {;
 string+="{{#if:{{{"+i+"|}}}|{{{form|:#}}} {{{"+i+"}}}}}";
}
string=string+"\n</div>{{#if:{{{file|}}}|<div class=\"editor_steps_image\">{{{file}}}</div></div>}}";