summaryrefslogtreecommitdiffstats
path: root/public/prism/prism-erlang.min.js
diff options
context:
space:
mode:
Diffstat (limited to 'public/prism/prism-erlang.min.js')
-rw-r--r--public/prism/prism-erlang.min.js25
1 files changed, 25 insertions, 0 deletions
diff --git a/public/prism/prism-erlang.min.js b/public/prism/prism-erlang.min.js
new file mode 100644
index 0000000..c670dd5
--- /dev/null
+++ b/public/prism/prism-erlang.min.js
@@ -0,0 +1,25 @@
+Prism.languages.erlang = {
+ comment: /%.+/,
+ string: { pattern: /"(?:\\.|[^\\"\r\n])*"/, greedy: !0 },
+ 'quoted-function': {
+ pattern: /'(?:\\.|[^\\'\r\n])+'(?=\()/,
+ alias: 'function',
+ },
+ 'quoted-atom': { pattern: /'(?:\\.|[^\\'\r\n])+'/, alias: 'atom' },
+ boolean: /\b(?:false|true)\b/,
+ keyword: /\b(?:after|case|catch|end|fun|if|of|receive|try|when)\b/,
+ number: [
+ /\$\\?./,
+ /\b\d+#[a-z0-9]+/i,
+ /(?:\b\d+(?:\.\d*)?|\B\.\d+)(?:e[+-]?\d+)?/i,
+ ],
+ function: /\b[a-z][\w@]*(?=\()/,
+ variable: { pattern: /(^|[^@])(?:\b|\?)[A-Z_][\w@]*/, lookbehind: !0 },
+ operator: [
+ /[=\/<>:]=|=[:\/]=|\+\+?|--?|[=*\/!]|\b(?:and|andalso|band|bnot|bor|bsl|bsr|bxor|div|not|or|orelse|rem|xor)\b/,
+ { pattern: /(^|[^<])<(?!<)/, lookbehind: !0 },
+ { pattern: /(^|[^>])>(?!>)/, lookbehind: !0 },
+ ],
+ atom: /\b[a-z][\w@]*/,
+ punctuation: /[()[\]{}:;,.#|]|<<|>>/,
+};