diff --git a/tools/get-docs/lua-manual.fnl b/tools/get-docs/lua-manual.fnl
index d5874b7..3fd84d9 100644
--- a/tools/get-docs/lua-manual.fnl
+++ b/tools/get-docs/lua-manual.fnl
@@ -52,6 +52,7 @@
(: :gsub "\"(.-)\"" "`\"%1\"`")
(: :gsub "\'(.-)\'" "`\"%1\"`")
(: :gsub "(.-)" "`%1`")
+ ;; supremum to unicode
(: :gsub "x" "ˣ")
(: :gsub "e" "ᵉ")
(: :gsub "y" "ʸ")
@@ -75,7 +76,7 @@
(: :gsub "?ul>" ""))
;; check to ensure that all the tags have been defeated
tag (str:match "<[^>]+>[^>]+>")]
- (when tag (error (.. tag "\n" str)))
+ (when tag (error (.. "unhandled tag:" tag "\n" str)))
(-> str
;; trim whitespace
(: :match "^%s*(.-)%s*$")