diff options
| author | Armand Philippot <git@armandphilippot.com> | 2021-12-30 19:47:21 +0100 |
|---|---|---|
| committer | Armand Philippot <git@armandphilippot.com> | 2021-12-30 19:47:21 +0100 |
| commit | a98b5ea6fe8e8cc98a55e0fd793e6e8660ea31c1 (patch) | |
| tree | 542810ab5aef99150db228bb54fd58303dcb31c7 /public/prism/prism-fsharp.min.js | |
| parent | ab355897a12b7bda1089a44de326d41455a0f7a3 (diff) | |
chore: add prismjs for syntax highlighting
Diffstat (limited to 'public/prism/prism-fsharp.min.js')
| -rw-r--r-- | public/prism/prism-fsharp.min.js | 68 |
1 files changed, 68 insertions, 0 deletions
diff --git a/public/prism/prism-fsharp.min.js b/public/prism/prism-fsharp.min.js new file mode 100644 index 0000000..eb29569 --- /dev/null +++ b/public/prism/prism-fsharp.min.js @@ -0,0 +1,68 @@ +(Prism.languages.fsharp = Prism.languages.extend('clike', { + comment: [ + { pattern: /(^|[^\\])\(\*(?!\))[\s\S]*?\*\)/, lookbehind: !0, greedy: !0 }, + { pattern: /(^|[^\\:])\/\/.*/, lookbehind: !0, greedy: !0 }, + ], + string: { + pattern: /(?:"""[\s\S]*?"""|@"(?:""|[^"])*"|"(?:\\[\s\S]|[^\\"])*")B?/, + greedy: !0, + }, + 'class-name': { + pattern: + /(\b(?:exception|inherit|interface|new|of|type)\s+|\w\s*:\s*|\s:\??>\s*)[.\w]+\b(?:\s*(?:->|\*)\s*[.\w]+\b)*(?!\s*[:.])/, + lookbehind: !0, + inside: { operator: /->|\*/, punctuation: /\./ }, + }, + keyword: + /\b(?:let|return|use|yield)(?:!\B|\b)|\b(?:abstract|and|as|asr|assert|atomic|base|begin|break|checked|class|component|const|constraint|constructor|continue|default|delegate|do|done|downcast|downto|eager|elif|else|end|event|exception|extern|external|false|finally|fixed|for|fun|function|functor|global|if|in|include|inherit|inline|interface|internal|land|lazy|lor|lsl|lsr|lxor|match|member|method|mixin|mod|module|mutable|namespace|new|not|null|object|of|open|or|override|parallel|private|process|protected|public|pure|rec|sealed|select|sig|static|struct|tailcall|then|to|trait|true|try|type|upcast|val|virtual|void|volatile|when|while|with)\b/, + number: [ + /\b0x[\da-fA-F]+(?:LF|lf|un)?\b/, + /\b0b[01]+(?:uy|y)?\b/, + /(?:\b\d+(?:\.\d*)?|\B\.\d+)(?:[fm]|e[+-]?\d+)?\b/i, + /\b\d+(?:[IlLsy]|UL|u[lsy]?)?\b/, + ], + operator: + /([<>~&^])\1\1|([*.:<>&])\2|<-|->|[!=:]=|<?\|{1,3}>?|\??(?:<=|>=|<>|[-+*/%=<>])\??|[!?^&]|~[+~-]|:>|:\?>?/, +})), + Prism.languages.insertBefore('fsharp', 'keyword', { + preprocessor: { + pattern: /(^[\t ]*)#.*/m, + lookbehind: !0, + alias: 'property', + inside: { + directive: { + pattern: /(^#)\b(?:else|endif|if|light|line|nowarn)\b/, + lookbehind: !0, + alias: 'keyword', + }, + }, + }, + }), + Prism.languages.insertBefore('fsharp', 'punctuation', { + 'computation-expression': { + pattern: /\b[_a-z]\w*(?=\s*\{)/i, + alias: 'keyword', + }, + }), + Prism.languages.insertBefore('fsharp', 'string', { + annotation: { + pattern: /\[<.+?>\]/, + greedy: !0, + inside: { + punctuation: /^\[<|>\]$/, + 'class-name': { + pattern: /^\w+$|(^|;\s*)[A-Z]\w*(?=\()/, + lookbehind: !0, + }, + 'annotation-content': { + pattern: /[\s\S]+/, + inside: Prism.languages.fsharp, + }, + }, + }, + char: { + pattern: + /'(?:[^\\']|\\(?:.|\d{3}|x[a-fA-F\d]{2}|u[a-fA-F\d]{4}|U[a-fA-F\d]{8}))'B?/, + greedy: !0, + }, + }); |
