Remove misleading total row from `--profile` table (#9039)

Merge pull request 9039
This commit is contained in:
Ashwin Maroli 2022-04-28 12:27:33 +05:30 committed by GitHub
parent 7c28eb5f7e
commit 6077ed6a01
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 3 deletions

View File

@ -14,15 +14,12 @@ module Jekyll
rows = table_rows.dup
header = rows.shift
footer = rows.pop
output = +"\n"
table = Terminal::Table.new do |t|
t << header
t << :separator
rows.each { |row| t << row }
t << :separator
t << footer
t.style = TERMINAL_TABLE_STYLES
t.align_column(0, :left)
end