From a98b5ea6fe8e8cc98a55e0fd793e6e8660ea31c1 Mon Sep 17 00:00:00 2001 From: Armand Philippot Date: Thu, 30 Dec 2021 19:47:21 +0100 Subject: chore: add prismjs for syntax highlighting --- public/prism/prism-erlang.min.js | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 public/prism/prism-erlang.min.js (limited to 'public/prism/prism-erlang.min.js') 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: /[()[\]{}:;,.#|]|<<|>>/, +}; -- cgit v1.2.3