From 38eaff5397a00c44525ebfb2c139e8905cb26878 Mon Sep 17 00:00:00 2001 From: Chi Vinh Le Date: Wed, 21 Jun 2017 19:41:22 +0700 Subject: [PATCH] Don't render title when it's null --- client/coral-plugin-infobox/Markdown.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/coral-plugin-infobox/Markdown.js b/client/coral-plugin-infobox/Markdown.js index b5cf88d22..482467987 100644 --- a/client/coral-plugin-infobox/Markdown.js +++ b/client/coral-plugin-infobox/Markdown.js @@ -5,7 +5,7 @@ const renderer = new marked.Renderer(); // Set link target to `_parent` to work properly in an embed. renderer.link = (href, title, text) => - `${text}`; + `${text}`; marked.setOptions({renderer});