From 599057b7b8517349f754e0287e640f846e7f61ad Mon Sep 17 00:00:00 2001 From: Rodrigo Fernandes Date: Sat, 24 Jan 2015 22:47:15 +0000 Subject: [PATCH] remove unnecessary colspans --- README.md | 2 -- diff2html.js | 6 +++--- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 4ef278b..83585ee 100644 --- a/README.md +++ b/README.md @@ -6,8 +6,6 @@ Diff to Html generates pretty HTML diffs from git word diff output. * `line-by-line` and `side-by-side` diff -* char-by-char highlight - * new and old line numbers * inserted and removed lines diff --git a/diff2html.js b/diff2html.js index d0268d4..c450e1b 100644 --- a/diff2html.js +++ b/diff2html.js @@ -211,7 +211,7 @@ return file.blocks.map(function (block) { var lines = "\n" + - " \n" + + " \n" + " " + "
" + escape(block.header) + "
" + " \n" + @@ -312,14 +312,14 @@ fileHtml.left += "\n" + " \n" + - " " + + " " + "
" + escape(block.header) + "
" + " \n" + "\n"; fileHtml.right += "\n" + " \n" + - " " + + " " + "
" + " \n" + "\n";