Template:Clean image/doc: Difference between revisions

fix links with bsw stuff instead of rsw
(Created page with "{{Documentation}} Cleans and formats an input image. This removes the following things if present: * <code><nowiki>[[File:</nowiki></code> * <code><nowiki>]]</nowiki></code> * <code><nowiki>|</nowiki></code> and <code><nowiki>{{!}}</nowiki></code>, and everything following the first of these until the end Then it re-packages the image into a new file container, with specified height, width, and link. The <code>frameless</code> modifier is used, which prevents the image...")
 
(fix links with bsw stuff instead of rsw)
 
Line 28:
| Just clean
| <pre>{{clean image|file={{{image}}}}}</pre>
| {{clean image|file=[[File:Basic bacon.png|100px|link=abyssal whippirate]]}}
| Should result in
<pre>[[File:{FILENAME}]]</pre>
Line 35:
| Clean + width
| <pre>{{clean image|file={{{image}}}|width=50}}</pre>
| {{clean image|file=[[File:Basic bacon.png|100px|link=abyssal whippirate]]|width=50}}
| Should result in
<pre>[[File:{FILENAME}|{WIDTH}px]]</pre>
Line 41:
| Clean + height
| <pre>{{clean image|file={{{image}}}|height=20}}</pre>
| {{clean image|file=[[File:Basic bacon.png|100px|link=abyssal whippirate]]|height=20}}
| Should result in
<pre>[[File:{FILENAME}|x{HEIGHT}px]]</pre>
Line 50:
{{clean image|file={{{image}}}|width=11|height=50}}
{{clean image|file={{{image}}}|width=66|height=66}}</pre>
|<poem>{{clean image|file=[[File:Basic bacon.png|100px|link=abyssal whippirate]]|width=44|height=20}}
{{clean image|file=[[File:Basic bacon.png|100px|link=abyssal whippirate]]|width=11|height=50}}
{{clean image|file=[[File:Basic bacon.png|100px|link=abyssal whippirate]]|width=66|height=60}}</poem>
| Should result in
<pre>[[File:{FILENAME}|{WIDTH}x{HEIGHT}px]]</pre>
Line 60:
|-
| Clean + link
| <pre>{{clean image|file={{{image}}}|link=Weird gloopSturlet}}</pre>
| {{clean image|file=[[File:Basic bacon.png|100px|link=abyssal whippirate]]|link=Weird gloopSturlet}}
| Should result in
<pre>[[File:{FILENAME}|link={LINK}]]</pre>
Line 67:
| Clean + link suppress
| <pre>{{clean image|file={{{image}}}|link=no}}</pre>
| {{clean image|file=[[File:Basic bacon.png|100px|link=abyssal whippirate]]|link=no}}
| Should result in
<pre>[[File:{FILENAME}|link=]]</pre>