diff options
author | Florian Dold <florian.dold@gmail.com> | 2019-03-27 21:01:33 +0100 |
---|---|---|
committer | Florian Dold <florian.dold@gmail.com> | 2019-03-27 21:01:33 +0100 |
commit | cc97a4dd2a967e1c2273bd5f4c5f49a5bf2e2585 (patch) | |
tree | 92c5d88706a6ffc654d1b133618d357890e7096b /node_modules/highlight.js/lib/languages/fsharp.js | |
parent | 3771b4d6b67b34c130f3a9a1a15f42deefdb2eda (diff) |
remove node_modules
Diffstat (limited to 'node_modules/highlight.js/lib/languages/fsharp.js')
-rw-r--r-- | node_modules/highlight.js/lib/languages/fsharp.js | 58 |
1 files changed, 0 insertions, 58 deletions
diff --git a/node_modules/highlight.js/lib/languages/fsharp.js b/node_modules/highlight.js/lib/languages/fsharp.js deleted file mode 100644 index 3251a2918..000000000 --- a/node_modules/highlight.js/lib/languages/fsharp.js +++ /dev/null @@ -1,58 +0,0 @@ -module.exports = function(hljs) { - var TYPEPARAM = { - begin: '<', end: '>', - contains: [ - hljs.inherit(hljs.TITLE_MODE, {begin: /'[a-zA-Z0-9_]+/}) - ] - }; - - return { - aliases: ['fs'], - keywords: - 'abstract and as assert base begin class default delegate do done ' + - 'downcast downto elif else end exception extern false finally for ' + - 'fun function global if in inherit inline interface internal lazy let ' + - 'match member module mutable namespace new null of open or ' + - 'override private public rec return sig static struct then to ' + - 'true try type upcast use val void when while with yield', - illegal: /\/\*/, - contains: [ - { - // monad builder keywords (matches before non-bang kws) - className: 'keyword', - begin: /\b(yield|return|let|do)!/ - }, - { - className: 'string', - begin: '@"', end: '"', - contains: [{begin: '""'}] - }, - { - className: 'string', - begin: '"""', end: '"""' - }, - hljs.COMMENT('\\(\\*', '\\*\\)'), - { - className: 'class', - beginKeywords: 'type', end: '\\(|=|$', excludeEnd: true, - contains: [ - hljs.UNDERSCORE_TITLE_MODE, - TYPEPARAM - ] - }, - { - className: 'meta', - begin: '\\[<', end: '>\\]', - relevance: 10 - }, - { - className: 'symbol', - begin: '\\B(\'[A-Za-z])\\b', - contains: [hljs.BACKSLASH_ESCAPE] - }, - hljs.C_LINE_COMMENT_MODE, - hljs.inherit(hljs.QUOTE_STRING_MODE, {illegal: null}), - hljs.C_NUMBER_MODE - ] - }; -};
\ No newline at end of file |