commit 6cb12682cb7dc70e85383a8b45bfa7153425e8f0
parent e618178f186995aa111a607ffe262541f2acd7f6
Author: Marc Stibane <marc@taler.net>
Date: Tue, 3 Oct 2023 15:51:37 +0200
formatting for better readability
Diffstat:
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/design-documents/051-fractional-digits.rst b/design-documents/051-fractional-digits.rst
@@ -28,7 +28,9 @@ c) the number of fractional digits [0..8] to be rendered as trailing zeroes (inc
E.g. if this is 2 (and normal == 2), then render $5 as “$ 5.00”.
If this is 3 (and normal == 2), then render $5 as “$ 5.00⁰” with two normal trailing zeroes and one superscript trailing zero.
-Usually, all these three numbers have the same value, which means that in case of e.g. “2” (used for €,$,£) the user can enter cent/penny values (but not a fraction of those), these cents/pennies are always shown (even if they are 0) as two normal digits after the decimal separator, and fractions of a cent/penny are rendered as SuperScriptDigits, but only if they are not trailing zeroes.
+Usually, all these three numbers have the same value, which means that in case of e.g. “2” (used for €,$,£) the user can enter
+cent/penny values (but not a fraction of those), these cents/pennies are always shown (even if they are 0) as two normal digits
+after the decimal separator, and fractions of a cent/penny are rendered as SuperScriptDigits, but only if they are not trailing zeroes.
Proposed Solution