Template:Plain image with caption
Caption goes here. |
Since MediaWiki does not provide a way to add visible captions to images integrated seamlessly in a page (i.e, without borders), this template aims to provide that functionality.
UsageEdit
This template can be either with named parameters, as in
{{plain image with caption|image=Example.svg|caption=Example text|width=250|align=right}}
...or in its shorthand form:
{{plain image with caption|Example.svg|Example text|250|right}}
- The only compulsory parameters are
image
andcaption
. The width defaults to 250px, and the alignment defaults to right - When using the shorthand version, keep in mind that the order of parameters is important
- Please notice that the width does not include the unit "px" (see the code below)
TechnicalEdit
The template wraps the image in an HTML table wrapper bounding the wrapper margins relative to the image width. The table positions the construct right or left and isolates it from other page text intrusion with fixed padding.
Actual internal codingEdit
The equivalance between placeholder and named parameters is shown here below:
{| style="float:{{{4|{{{align|right}}}}}}; width:{{{3|{{{width|250}}}}}}px; margin:1em; background:transparent;" | [[Image:{{{1|{{{image<noinclude>|Example.svg</noinclude>}}}}}} | right|{{{3|{{{width|250}}}}}}px|{{{2|{{{caption<noinclude>|Caption goes here.</noinclude>}}}}}}]] |- |<span style="font-size:85%;">{{{2|{{{caption<noinclude>|Caption goes here.</noinclude>}}}}}}</span> |}
So the placeholder parameters map as named parameters to operational HTML in order:
image: {{{image}}} or {{{1|}}}
caption: {{{caption}}} or {{{2|}}}
width: {{{width}}} or {{{3|}}}
— defaults to 250 and adds the 'px;' suffix, so leave it off!float: {{{align}}} or {{{4|}}}
The above documentation is transcluded from Template:Plain image with caption/doc. (edit | history) Editors can experiment in this template's sandbox (create | mirror) and testcases (create) pages. Please add categories to the /doc subpage. Subpages of this template. |