From 60b86e0250d7ec640dcedd3445da83d6f730d61c Mon Sep 17 00:00:00 2001 From: Yukai Huang Date: Sat, 21 Oct 2017 11:45:17 +0800 Subject: [PATCH] Fix markdown-it gist plugin code closing tag fix #596 --- public/js/extra.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/js/extra.js b/public/js/extra.js index a1a9dbb..d36592d 100644 --- a/public/js/extra.js +++ b/public/js/extra.js @@ -1092,7 +1092,7 @@ const gistPlugin = new Plugin( (match, utils) => { const gistid = match[1] - const code = `` + const code = `` return code } )