From 8d0fb7df6214a5fc309ad2e13c70a4d4c955588a Mon Sep 17 00:00:00 2001 From: Matt Huntington Date: Fri, 22 Jan 2016 08:30:15 -0500 Subject: [PATCH] correct tabbing of uls --- index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.js b/index.js index b507bd4..a41dfd0 100755 --- a/index.js +++ b/index.js @@ -30,8 +30,8 @@ var parseFile = function(data, callback){ var split_value = value.split('\t'); var num_tabs = split_value.length - 1; if(num_tabs > previous_line){ - html += '\n' + insertTabs(num_tabs) +'
  • '); + html += '\n' + insertTabs(num_tabs) +'
  • \n' + insertTabs(num_tabs+1) + '\n' + insertTabs(num_tabs) + '
  • '); } else if(num_tabs < previous_line){ html += popTabStack(tabStack);