You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Although, since 9 is the only number it applies to (10 and larger have a different rule), I'm not sure if the string addition is necessary at all. I.e., it seems like you could get away with the following, and leave less room for error:
...
_ | x >= 9 -> "IX"
...
The text was updated successfully, but these errors were encountered:
9 (and numbers ending with a 9) will translate to "IXIV". The code in Text.Pandoc.Shared is currently
I imagine it should be
Although, since 9 is the only number it applies to (10 and larger have a different rule), I'm not sure if the string addition is necessary at all. I.e., it seems like you could get away with the following, and leave less room for error:
The text was updated successfully, but these errors were encountered: