aboutsummaryrefslogtreecommitdiff
path: root/node_modules/highlight.js/lib/languages/dos.js
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2019-03-27 21:01:33 +0100
committerFlorian Dold <florian.dold@gmail.com>2019-03-27 21:01:33 +0100
commitcc97a4dd2a967e1c2273bd5f4c5f49a5bf2e2585 (patch)
tree92c5d88706a6ffc654d1b133618d357890e7096b /node_modules/highlight.js/lib/languages/dos.js
parent3771b4d6b67b34c130f3a9a1a15f42deefdb2eda (diff)
remove node_modules
Diffstat (limited to 'node_modules/highlight.js/lib/languages/dos.js')
-rw-r--r--node_modules/highlight.js/lib/languages/dos.js51
1 files changed, 0 insertions, 51 deletions
diff --git a/node_modules/highlight.js/lib/languages/dos.js b/node_modules/highlight.js/lib/languages/dos.js
deleted file mode 100644
index e2245f027..000000000
--- a/node_modules/highlight.js/lib/languages/dos.js
+++ /dev/null
@@ -1,51 +0,0 @@
-module.exports = function(hljs) {
- var COMMENT = hljs.COMMENT(
- /^\s*@?rem\b/, /$/,
- {
- relevance: 10
- }
- );
- var LABEL = {
- className: 'symbol',
- begin: '^\\s*[A-Za-z._?][A-Za-z0-9_$#@~.?]*(:|\\s+label)',
- relevance: 0
- };
- return {
- aliases: ['bat', 'cmd'],
- case_insensitive: true,
- illegal: /\/\*/,
- keywords: {
- keyword:
- 'if else goto for in do call exit not exist errorlevel defined ' +
- 'equ neq lss leq gtr geq',
- built_in:
- 'prn nul lpt3 lpt2 lpt1 con com4 com3 com2 com1 aux ' +
- 'shift cd dir echo setlocal endlocal set pause copy ' +
- 'append assoc at attrib break cacls cd chcp chdir chkdsk chkntfs cls cmd color ' +
- 'comp compact convert date dir diskcomp diskcopy doskey erase fs ' +
- 'find findstr format ftype graftabl help keyb label md mkdir mode more move path ' +
- 'pause print popd pushd promt rd recover rem rename replace restore rmdir shift' +
- 'sort start subst time title tree type ver verify vol ' +
- // winutils
- 'ping net ipconfig taskkill xcopy ren del'
- },
- contains: [
- {
- className: 'variable', begin: /%%[^ ]|%[^ ]+?%|![^ ]+?!/
- },
- {
- className: 'function',
- begin: LABEL.begin, end: 'goto:eof',
- contains: [
- hljs.inherit(hljs.TITLE_MODE, {begin: '([_a-zA-Z]\\w*\\.)*([_a-zA-Z]\\w*:)?[_a-zA-Z]\\w*'}),
- COMMENT
- ]
- },
- {
- className: 'number', begin: '\\b\\d+',
- relevance: 0
- },
- COMMENT
- ]
- };
-}; \ No newline at end of file