From b7ab92c014cfd833377ac14f99043bbf032a95ff Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Sun, 18 Dec 2011 12:42:28 +0000 Subject: indent tables four spaces for markdown --- seivots-summary | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/seivots-summary b/seivots-summary index f77109b..7eca1ff 100755 --- a/seivots-summary +++ b/seivots-summary @@ -53,11 +53,11 @@ class Table(object): widths = self.compute_column_widths(cells) - f.write('%s\n' % self.format_headings(widths, 0)) - f.write('%s\n' % self.format_headings(widths, 1)) + f.write(' %s\n' % self.format_headings(widths, 0)) + f.write(' %s\n' % self.format_headings(widths, 1)) f.write('\n') for row in self.rows: - f.write('%s\n' % self.format_row(row, widths)) + f.write(' %s\n' % self.format_row(row, widths)) def align_cell(self, width, text, column): h1, h2, fmt, left = self.columns[column] -- cgit v1.2.1