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 '
'; } } });