Skip to content

Commit 35d8069

Browse files
fix lisp ,( brace matching
i never encountered this but good to fix if i ever do
1 parent 27e9ec6 commit 35d8069

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/static/prism.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

static/prism.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3458,7 +3458,7 @@ Prism.languages.python3 = Prism.languages.python;
34583458
var BRACE_ALIAS_MAP = {
34593459
'${': '{', // JS template punctuation (e.g. `foo ${bar + 1}`)
34603460
'do': '[', 'end': ']', // Phoo blocks
3461-
"'(": '(', '`(': '(', // Lisp quotes and quasiquotes
3461+
"'(": '(', '`(': '(', ',(': '(', // Lisp quotes and quasiquotes
34623462
};
34633463

34643464
var LEVEL_WARP = 12;

0 commit comments

Comments
 (0)