From 51aab9ca08debede2a4fd18079b043a46e904b67 Mon Sep 17 00:00:00 2001 From: "J. Ryan Stinnett" Date: Wed, 27 Jan 2021 13:06:59 +0000 Subject: [PATCH] Fix import style for commonmark --- src/Markdown.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Markdown.js b/src/Markdown.js index dc4d442aff..f670bded12 100644 --- a/src/Markdown.js +++ b/src/Markdown.js @@ -14,7 +14,7 @@ See the License for the specific language governing permissions and limitations under the License. */ -import commonmark from 'commonmark'; +import * as commonmark from 'commonmark'; import {escape} from "lodash"; const ALLOWED_HTML_TAGS = ['sub', 'sup', 'del', 'u'];