1
0
mirror of https://github.com/janet-lang/janet synced 2024-09-06 04:26:50 +00:00
janet/grammar/tmcorelib.janet
2018-12-16 21:30:58 -05:00

31 lines
601 B
Plaintext

# Helper to generate core library mappings for janet
(def allsyms (all-symbols))
(def- escapes
{(get "|" 0) `\|`
(get "-" 0) `\-`
(get "+" 0) `\+`
(get "*" 0) `\*`
(get "^" 0) `\^`
(get "$" 0) `\$`
(get "?" 0) `\?`
38 "&"
60 "<"
62 ">"
34 """
39 "'"
47 "/"})
(defn- escape
"Escape special characters for HTML and regex encoding."
[str]
(def buf @"")
(loop [byte :in str]
(if-let [rep escapes.byte]
(buffer/push-string buf rep)
(buffer/push-byte buf byte)))
buf)
(print (string/join (map escape allsyms)) "|"))