From 49eca160a5c4b5b509a0de4640afbaf39dd4fe98 Mon Sep 17 00:00:00 2001 From: Kayne Ruse Date: Thu, 31 Aug 2017 20:42:27 +1000 Subject: [PATCH] fixed toc --- public_html/utilities.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public_html/utilities.js b/public_html/utilities.js index 80f6049..405e822 100644 --- a/public_html/utilities.js +++ b/public_html/utilities.js @@ -12,7 +12,7 @@ var markdown = window.markdownit({html:true}) render: function (tokens, idx) { if (tokens[idx].nesting === 1) { //opening tag - return '
'; + return '
'; } else { // closing tag return '
';