Difference between revisions of "Template:Tt"

From Dream Cancel Wiki
Jump to navigation Jump to search
Line 2: Line 2:
== What this is ==
== What this is ==
A template to write tooltips!
A template to write tooltips!
 
</noninclude>
== Usage & Examples ==
<pre><nowiki>{{tt|Normal text|Tooltip text}}</nowiki></pre>
{{tt|Normal text|Tooltip text}}
<pre><nowiki>{{tt|Normal text without underline|Tooltip text|line=false}}</nowiki></pre>
{{tt|Normal text without underline|Tooltip text|line=false}}
<pre><nowiki>{{tt|Tooltip text with horizontal rule|Tooltip<hr>Text}}</nowiki></pre>
{{tt|Tooltip text with horizontal rule|Tooltip<hr />Text}}
<pre><nowiki>{{tt|{{tt|Nested tooltip|Bottom text}}|Top text}}</nowiki></pre>
{{tt|{{tt|Nested tooltip|Bottom text}}|Top text}}
<pre><nowiki>{{tt|left-aligned text|Tooltip text|text-align=left}}</nowiki></pre>
{{tt|left-aligned text|Tooltip text|text-align=left}}
 
== Notes ==
* Do '''not''' use <code><nowiki><hr /></nowiki></code> inside tooltips!
** Use <code><nowiki><span class="hr"></span></nowiki></code> instead.
** This is due to mw parser spawning random linebreaks if <code><nowiki><hr /></nowiki></code> is used.
 
 
 
 
<templatedata>
{
"params": {
"1": {
"label": "Text",
"description": "Text to be shown by normally.",
"type": "string",
"required": true
},
"2": {
"label": "Tooltip Text",
"description": "Text to be shown in the tooltip when hovered.",
"type": "string",
"required": true
},
"line": {
"label": "Show Underline",
"description": "Defaults to true. Set to false to hide the dotted underline.",
"type": "boolean"
},
"text-align": {
"label": "Text Align",
"description": "Overrides text-align style. Possible values: left, center, right, justify.",
"type": "string"
}
},
"description": "A template to write tooltips!",
"paramOrder": [
"1",
"2",
"line",
"text-align"
],
"format": "inline"
}
</templatedata>
</noinclude>

Revision as of 05:34, 20 May 2021

What this is

A template to write tooltips! </noninclude>