Template:Unicode/doc: Difference between revisions

From Official Kodi Wiki
Jump to navigation Jump to search
No edit summary
Line 27: Line 27:


<includeonly>
<includeonly>
[[Category:Templates]]
[[Category:Formatting templates]]
</includeonly>
</includeonly>

Revision as of 02:43, 22 May 2013

Usage

The template looks for letter font families that are broadly supporting incurrent characters (symbols, characters). Input can be decimal like &#123; or hexadecimal &#xA9;. E.g. (mind the 'x' for hex values):

  • ​{{unicode|&amp;#x22CA;}}​
    -->
  • ​{{unicode|&amp;#8906;}}​
    -->
  • ​{{unicode|&#8906;}}​
    --> (this may look trivial, but could be helpful in other browsers)

or

  • ​{{unicode|&amp;#x22C9;}}​
    -->
  • ​{{unicode|&amp;#8905;}}​
    -->
  • ​{{unicode|&#8905;}}​
    -->

Purpose

This template is created to allow easy switching to unicode fonts. It should only be used in cases where characters otherwise do not render correctly on some browsers, such as Internet Explorer.

The fonts selected are designed to maximize the probability to render uncommon Unicode characters correctly. However, different fonts cover different Unicode ranges. It is probably mostly useful for various Unicode symbols.

Guts of template

<span class="Unicode">{{{1}}}</span>

...wherein class="Unicode" is defined in MediaWiki:Common.js:

.Unicode {
    font-family: "Arial Unicode MS", "Lucida Sans Unicode"; 
}

A personal stylesheet (/monobook.css &c, class .Unicode) may be used to enforce a "prettier" display where preferred.