File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ CAVEATS / POTENTIALLY BREAKING CHANGES
7
7
8
8
Core Grammars:
9
9
10
- - Nothing yet.
10
+ - fix(makefile) - allow strings inside ` $() ` expressions [ aneesh98 ] [ ]
11
11
12
12
New Grammars:
13
13
@@ -24,6 +24,7 @@ Themes:
24
24
CONTRIBUTORS
25
25
26
26
[ Josh Goebel ] : https://github.com/joshgoebel
27
+ [ aneesh98 ] : https://github.com/aneesh98
27
28
28
29
29
30
## Version 11.10.0
Original file line number Diff line number Diff line change @@ -38,7 +38,10 @@ export default function(hljs) {
38
38
+ 'word wordlist firstword lastword dir notdir suffix basename '
39
39
+ 'addsuffix addprefix join wildcard realpath abspath error warning '
40
40
+ 'shell origin flavor foreach if or and call eval file value' } ,
41
- contains : [ VARIABLE ]
41
+ contains : [
42
+ VARIABLE ,
43
+ QUOTE_STRING // Added QUOTE_STRING as they can be a part of functions
44
+ ]
42
45
} ;
43
46
/* Variable assignment */
44
47
const ASSIGNMENT = { begin : '^' + hljs . UNDERSCORE_IDENT_RE + '\\s*(?=[:+?]?=)' } ;
You can’t perform that action at this time.
0 commit comments