Commas/doc is used to correctly sort and display numbers using thousands separators in a table when using sortable tables.

What it solves change

To use Help:Sorting and have it function correctly, numbers must be entered without thousands separators. To enable the display of thousands separators, this template automatically creates the hidden <span style="display:none">&&&&&&&123456789.&&1230</span> 123,456,789.00123 before the actual displayed number. It forces the sorting routine to use text sort on the hidden segment, which functions correctly due to the preceding ampersands (currently till 16 digits before, and 6 digits after the decimal separator).

Parameters change

Only one: a real number without thousand separators.

Input change

{{Nts|123456789.00123}}

Output change

Output sent to table

 <span style="display:none">&&&&&&&123456789.&&1230</span> 123,456,789.00123 

Output displayed to user
&&&&&&&123456789.&&1230123,456,789.00123