summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorunwox <me@unwox.com>2025-10-30 20:46:30 +0600
committerunwox <me@unwox.com>2025-10-30 20:46:30 +0600
commit793e65b722f9bb092b185354ca5762b36293769f (patch)
treed89bbaeea1a996ff928bda9a944d42821cc1afc7
parentf5b81c32cfb20b67f2944408fb64c87b2d4e309d (diff)
improve price formatting
-rw-r--r--lib.fnl2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib.fnl b/lib.fnl
index 6c9dd33..ecf89fa 100644
--- a/lib.fnl
+++ b/lib.fnl
@@ -165,7 +165,7 @@
(# price-str)))
(var cursor (- price-len 3))
(while (< 0 cursor)
- (set price-str (insert price-str " " cursor))
+ (set price-str (insert price-str "&nbsp;" cursor))
(set cursor (- cursor 3)))
price-str)