aboutsummaryrefslogtreecommitdiff
path: root/node_modules/highlight.js/lib/languages/brainfuck.js
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/highlight.js/lib/languages/brainfuck.js')
-rw-r--r--node_modules/highlight.js/lib/languages/brainfuck.js36
1 files changed, 0 insertions, 36 deletions
diff --git a/node_modules/highlight.js/lib/languages/brainfuck.js b/node_modules/highlight.js/lib/languages/brainfuck.js
deleted file mode 100644
index bd50040ba..000000000
--- a/node_modules/highlight.js/lib/languages/brainfuck.js
+++ /dev/null
@@ -1,36 +0,0 @@
-module.exports = function(hljs){
- var LITERAL = {
- className: 'literal',
- begin: '[\\+\\-]',
- relevance: 0
- };
- return {
- aliases: ['bf'],
- contains: [
- hljs.COMMENT(
- '[^\\[\\]\\.,\\+\\-<> \r\n]',
- '[\\[\\]\\.,\\+\\-<> \r\n]',
- {
- returnEnd: true,
- relevance: 0
- }
- ),
- {
- className: 'title',
- begin: '[\\[\\]]',
- relevance: 0
- },
- {
- className: 'string',
- begin: '[\\.,]',
- relevance: 0
- },
- {
- // this mode works as the only relevance counter
- begin: /\+\+|\-\-/, returnBegin: true,
- contains: [LITERAL]
- },
- LITERAL
- ]
- };
-}; \ No newline at end of file