Skip to content

Latest commit

 

History

History
23 lines (16 loc) · 977 Bytes

README.md

File metadata and controls

23 lines (16 loc) · 977 Bytes

MarkdownTables.jl

lifecycle build codecov

Lightweight package to print a table that implements the Tables.jl interface in Markdown.

Primarily developed for use in Literate.jl, as

using MarkdownTables #hide
some_table |> markdown_table()

You can directly save the generated ready-to-paste table to your clipboard via:

some_table |> markdown_table(String) |> clipboard

Alternatives

PrettyTables.jl is much more general, but is also a heavier dependency.