From e81843cdd1d93a651bdca8787d7590f9e12f9ead Mon Sep 17 00:00:00 2001 From: Kayne Ruse Date: Thu, 7 Sep 2017 17:45:16 +1000 Subject: [PATCH] Fixed visibility issue --- public_html/utilities.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/public_html/utilities.js b/public_html/utilities.js index 80efc58..684977b 100644 --- a/public_html/utilities.js +++ b/public_html/utilities.js @@ -15,10 +15,10 @@ var markdown = window.markdownit({html:true}) render: function (tokens, idx) { if (tokens[idx].nesting === 1) { //opening tag - return '
'; + return '
'; } else { // closing tag - return '
'; + return '
'; } } });