From 6ca34281dc9aeabc15143fa402bae565ca4accd0 Mon Sep 17 00:00:00 2001 From: Matt Huntington Date: Sat, 23 Jan 2016 12:34:02 -0500 Subject: [PATCH] cleanup --- index.js | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/index.js b/index.js index fe67478..81b12f7 100755 --- a/index.js +++ b/index.js @@ -49,21 +49,6 @@ module.exports = function(file_path, callback){ previous_line_num_tabs = current_line_num_tabs; } } -/* lines.forEach(function(value, index){ - if(value !== ''){ - var split_value = value.split('\t'); - var num_tabs = split_value.length - 1; - if(num_tabs > previous_line){ - html += '\n' + insertTabs(num_tabs * 2) + ''; - tabStack.push(html_push_string); - } - html += '\n' + insertTabs(num_tabs * 2 + 1) + - '
  • ' + split_value[split_value.length - 1] + '
  • '; - previous_line = num_tabs; - } - }); -*/ html += emptyHTMLStack(html_stack); callback(html); }