Difference between revisions of "Template:Decimal Align/doc"

From Team Fortress Wiki
Jump to: navigation, search
m (Added decimal seperator)
m (add missing cats)
Line 39: Line 39:
 
|-
 
|-
 
| {{Decimal Align | NUM = 999.111 | P = 2 | SEP = ,}}
 
| {{Decimal Align | NUM = 999.111 | P = 2 | SEP = ,}}
|}
+
|}<noinclude>[[Category:Template documentation]]</noinclude>

Revision as of 07:47, 23 July 2010

This template is useful for stacking values in a table, where the numbers should be aligned based on the decimal separator. This template takes two arguments:

Argument Meaning
NUM Number to format
P Number of places after the decimal separator, defaults to three, maximum of nine
SEP Alternate character to use as the decimal separator, defaults to a .

So in example, the following table construct:

{| class="wikitable grid"
|-
! class = "header" | Numbers 
|-
| {{Decimal Align | NUM = 123.456789}}
|-
| {{Decimal Align | NUM = 123.456789 | P = 0}}
|-
| {{Decimal Align | NUM = 123}}
|-
| {{Decimal Align | NUM = 999.111 | P = 2 | SEP = ,}}
|}

Would generate:

Numbers
123 .457
123
123 .000
999 .11