From 74a379e279452db372b9b25abecfcdf0de406957 Mon Sep 17 00:00:00 2001 From: macsplit Date: Fri, 13 May 2022 11:23:40 +0100 Subject: [PATCH] simplified regexp parsing code blocks --- index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.js b/index.js index 15e069d..9c6f9da 100755 --- a/index.js +++ b/index.js @@ -173,8 +173,8 @@ function code_block_to_markdown (html) { const match_code = /^\s*]*>[\r\n]*([\s\S]*)<\/code>\s*$/ig.exec(inner_html); if (match_code && match_code[1]) inner_html = match_code[1]; - inner_html = inner_html.replace(/]*>/ig,"\n"); - inner_html = inner_html.replace(/(<([^>]+)>)/ig, ""); + inner_html = inner_html.replaceAll(/]*>/ig,"\n"); + inner_html = inner_html.replaceAll(/<[^>]+>/ig, ""); inner_html = htmlentities.decode(inner_html); const markdown = "```\n"+inner_html+"\n```\n"; return markdown;