ronisbr / PrettyTables.jl

Print data in formatted tables.
MIT License
391 stars 38 forks source link

Wrong horizontal line when header is omitted #201

Closed ronisbr closed 1 year ago

ronisbr commented 1 year ago
julia> using Revise, PrettyTables

julia> A = [1 2; 3 4];

julia> pretty_table(A; hlines = [1], vlines = :none, show_header = false)
──────
 1  2
──────
 3  4