Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tpapp/markdowntables.jl
Lightweigth package to print a table that implements the Tables.jl interface in Markdown.
https://github.com/tpapp/markdowntables.jl
julia literate markdown
Last synced: 19 days ago
JSON representation
Lightweigth package to print a table that implements the Tables.jl interface in Markdown.
- Host: GitHub
- URL: https://github.com/tpapp/markdowntables.jl
- Owner: tpapp
- License: other
- Created: 2022-09-21T13:47:02.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2023-05-23T10:18:05.000Z (over 1 year ago)
- Last Synced: 2024-10-11T17:38:41.312Z (about 1 month ago)
- Topics: julia, literate, markdown
- Language: Julia
- Homepage:
- Size: 13.7 KB
- Stars: 26
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# MarkdownTables.jl
![lifecycle](https://img.shields.io/badge/lifecycle-experimental-orange.svg)
[![build](https://github.com/tpapp/MarkdownTables.jl/workflows/CI/badge.svg)](https://github.com/tpapp/MarkdownTables.jl/actions?query=workflow%3ACI)
[![codecov](https://codecov.io/github/tpapp/MarkdownTables.jl/branch/master/graph/badge.svg?token=P4us6KCrKg)](https://codecov.io/github/tpapp/MarkdownTables.jl)Lightweight package to print a table that implements the [Tables.jl interface](https://tables.juliadata.org) in Markdown.
Primarily developed for use in [Literate.jl](https://fredrikekre.github.io/Literate.jl), as
```julia
using MarkdownTables #hide
some_table |> markdown_table()
```You can directly save the generated ready-to-paste table to your clipboard via:
```julia
some_table |> markdown_table(String) |> clipboard
```# Alternatives
[PrettyTables.jl](https://ronisbr.github.io/PrettyTables.jl/) is much more general, but is also a heavier dependency.