Template:Link/render: Difference between revisions

From Heroes of Might and Magic: Olden Era Official Wiki
No edit summary
N (talk | contribs)
No edit summary
Line 1: Line 1:
<includeonly><!--
<includeonly><!--
--><span style="white-space:nowrap;"><!--
--><span style="{{#if:{{{wrap|}}}| |white-space:nowrap;}}"><!--
     -->{{#if:{{{filename|}}}
     -->{{#if:{{{filename|}}}
         |[[File:{{{filename}}} | {{{size|x32px}}} | link=<!--
         |[[File:{{{filename}}} | {{{size|x32px}}} | link=<!--
Line 27: Line 27:
--></includeonly><noinclude>
--></includeonly><noinclude>


This template is used by [[Template:LinkIcon]] as the base for rendering a link with an icon {{b|in front}} of it.
This template is used by [[Template:LinkIcon]] as the base for rendering a link with an icon {{b|in front}} of it. The resulting link will {{b|not}} wrap.
===Usage===
===Usage===


Line 160: Line 160:
| text=Ister
| text=Ister
}}
}}
----
8. With {{b|wrap}}, to allow the resulting link to wrap:
{{Color|yellow|Input:}}
<pre><nowiki>
{|class=wikitable
|style="width:100px;"|{{Link/render
| text=Line much longer than 100 pixels, can wrap
| wrap=1
}}
|style="width:100px;"|{{Link/render
| text=Line much longer than 100 pixels, no wrapping
}}
|}</nowiki></pre>
{{Color|lime|Output:}}
{|class=wikitable
|style="width:100px;"|{{Link/render
| text=Line much longer than 100 pixels, can wrap
| wrap=1
}}
|style="width:100px;"|{{Link/render
| text=Line much longer than 100 pixels, no wrapping
}}
|}


</noinclude>
</noinclude>

Revision as of 18:23, 27 June 2026


This template is used by Template:LinkIcon as the base for rendering a link with an icon in front of it. The resulting link will not wrap.

Usage

1. Normal:

Input:

{{Link/render
| filename=Ister.png
| link=Ister
| text=Ister
}}

Output: Ister


2. With lang, to override the default (en) and thus change the link:

Input:

{{Link/render
| filename=Ister.png
| link=Ister
| text=イスター
| lang=ja
}}

Output: イスター


3. With size, to override the default (32px):

Input:

{{Link/render
| filename=Ister.png
| link=Ister
| text=Ister
| size=128px
}}

Output: Ister


4. With color, to override the default:

Input:

{{Link/render
| filename=Ister.png
| link=Ister
| text=Ister
| color=magenta
}}

Output: Ister


5. With empty filename, to hide the icon:

Input:

{{Link/render
| link=Ister
| text=Ister
}}

Output: Ister


6. With empty text, to hide the right side:

Input:

{{Link/render
| filename=Ister.png
| link=Ister
}}

Output:


7. With empty link, to omit the links:

Input:

{{Link/render
| filename=Ister.png
| text=Ister
}}

Output: Ister


8. With wrap, to allow the resulting link to wrap:

Input:

{|class=wikitable
|style="width:100px;"|{{Link/render
| text=Line much longer than 100 pixels, can wrap
| wrap=1
}}
|style="width:100px;"|{{Link/render
| text=Line much longer than 100 pixels, no wrapping
}}
|}

Output:

Line much longer than 100 pixels, can wrap Line much longer than 100 pixels, no wrapping