aboutsummaryrefslogtreecommitdiff
path: root/node_modules/highlight.js/lib/languages/makefile.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/makefile.js
parent3771b4d6b67b34c130f3a9a1a15f42deefdb2eda (diff)
remove node_modules
Diffstat (limited to 'node_modules/highlight.js/lib/languages/makefile.js')
-rw-r--r--node_modules/highlight.js/lib/languages/makefile.js80
1 files changed, 0 insertions, 80 deletions
diff --git a/node_modules/highlight.js/lib/languages/makefile.js b/node_modules/highlight.js/lib/languages/makefile.js
deleted file mode 100644
index 300cf260c..000000000
--- a/node_modules/highlight.js/lib/languages/makefile.js
+++ /dev/null
@@ -1,80 +0,0 @@
-module.exports = function(hljs) {
- /* Variables: simple (eg $(var)) and special (eg $@) */
- var VARIABLE = {
- className: 'variable',
- variants: [
- {
- begin: '\\$\\(' + hljs.UNDERSCORE_IDENT_RE + '\\)',
- contains: [hljs.BACKSLASH_ESCAPE],
- },
- {
- begin: /\$[@%<?\^\+\*]/
- },
- ]
- };
- /* Quoted string with variables inside */
- var QUOTE_STRING = {
- className: 'string',
- begin: /"/, end: /"/,
- contains: [
- hljs.BACKSLASH_ESCAPE,
- VARIABLE,
- ]
- };
- /* Function: $(func arg,...) */
- var FUNC = {
- className: 'variable',
- begin: /\$\([\w-]+\s/, end: /\)/,
- keywords: {
- built_in:
- 'subst patsubst strip findstring filter filter-out sort ' +
- 'word wordlist firstword lastword dir notdir suffix basename ' +
- 'addsuffix addprefix join wildcard realpath abspath error warning ' +
- 'shell origin flavor foreach if or and call eval file value',
- },
- contains: [
- VARIABLE,
- ]
- };
- /* Variable assignment */
- var VAR_ASSIG = {
- begin: '^' + hljs.UNDERSCORE_IDENT_RE + '\\s*[:+?]?=',
- illegal: '\\n',
- returnBegin: true,
- contains: [
- {
- begin: '^' + hljs.UNDERSCORE_IDENT_RE, end: '[:+?]?=',
- excludeEnd: true,
- }
- ]
- };
- /* Meta targets (.PHONY) */
- var META = {
- className: 'meta',
- begin: /^\.PHONY:/, end: /$/,
- keywords: {'meta-keyword': '.PHONY'},
- lexemes: /[\.\w]+/
- };
- /* Targets */
- var TARGET = {
- className: 'section',
- begin: /^[^\s]+:/, end: /$/,
- contains: [VARIABLE,]
- };
- return {
- aliases: ['mk', 'mak'],
- keywords:
- 'define endef undefine ifdef ifndef ifeq ifneq else endif ' +
- 'include -include sinclude override export unexport private vpath',
- lexemes: /[\w-]+/,
- contains: [
- hljs.HASH_COMMENT_MODE,
- VARIABLE,
- QUOTE_STRING,
- FUNC,
- VAR_ASSIG,
- META,
- TARGET,
- ]
- };
-}; \ No newline at end of file