Skip to content

Commit 0791cb6

Browse files
committed
Syntax: Fix ST3 compatibility
`pop: 1` is not supported by ST3
1 parent b427994 commit 0791cb6

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

syntaxes/Markdown.sublime-syntax

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2446,7 +2446,7 @@ contexts:
24462446
scope: punctuation.definition.attributes.begin.markdown
24472447
set: link-def-attr-body
24482448
- match: ^(?!\s*{)|(?=\S)
2449-
pop: 1
2449+
pop: true
24502450

24512451
link-def-attr-body:
24522452
- meta_scope: meta.attributes.markdown
@@ -2460,13 +2460,13 @@ contexts:
24602460
- expect-attr-or-eol
24612461
- link-title
24622462
- match: (?=\{)
2463-
pop: 1
2463+
pop: true
24642464
- match: \S.+
24652465
scope: invalid.illegal.expected-eol.markdown
24662466

24672467
expect-attr-or-eol:
24682468
- match: (?=\{)
2469-
pop: 1
2469+
pop: true
24702470
- include: expect-eol
24712471

24722472
link-def-url:
@@ -3339,7 +3339,7 @@ contexts:
33393339

33403340
autolink-inet-group:
33413341
- match: \)
3342-
pop: 1
3342+
pop: true
33433343
- match: (?=(?:{{html_entity}})*[?!.,:;*_~'"]*[\s<])
33443344
pop: true
33453345
- include: autolink-inet-common

0 commit comments

Comments
 (0)