From f53156982410ff65888ac98a083417f5fd4dbcf0 Mon Sep 17 00:00:00 2001 From: Ben Wheeler Date: Tue, 18 Feb 2014 09:36:54 -0500 Subject: [PATCH] add missing backslash escape the backslash in the fenced code block regexp --- lib/ace/mode/markdown_highlight_rules.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ace/mode/markdown_highlight_rules.js b/lib/ace/mode/markdown_highlight_rules.js index ad153788..a7e5a105 100644 --- a/lib/ace/mode/markdown_highlight_rules.js +++ b/lib/ace/mode/markdown_highlight_rules.js @@ -79,7 +79,7 @@ var MarkdownHighlightRules = function() { github_embed("css", "csscode-"), { // Github style block token : "support.function", - regex : "^```\\s*\S*(?:{.*?\\})?\\s*$", + regex : "^```\\s*\\S*(?:{.*?\\})?\\s*$", next : "githubblock" }, { // block quote token : "string.blockquote",