summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDimitri Sokolyuk <demon@dim13.org>2016-08-22 02:48:09 +0200
committerDimitri Sokolyuk <demon@dim13.org>2016-08-22 02:48:09 +0200
commit78cb9b9184040c61dbdf4303784982ab3638fa80 (patch)
tree48c01653024d3b77ce45506c505dfa529655e7ec
parente477e4fc47f6f39107f167cfdd2f1b6be0b81f0a (diff)
Add Description
-rw-r--r--roman.go8
1 files changed, 8 insertions, 0 deletions
diff --git a/roman.go b/roman.go
index afcdbdd..b5886ba 100644
--- a/roman.go
+++ b/roman.go
@@ -1,5 +1,13 @@
// Package roman numerals
//
+// For fluff, the unicode overbar is recognized as a factor of 1000.
+//
+// If you see boxes in the code below, those are supposed to be the
+// Unicode combining overline (U+0305) and look like I̅V̅X̅L̅C̅D̅M̅. Or, if
+// you see overstruck combinations of letters, that's a different font
+// rendering problem. (If you need roman numerals > 3999 reliably, it
+// might best to stick to chiseling them in stone...)
+//
// Source: https://www.rosettacode.org/wiki/Roman_numerals/Encode#Go
package roman