JuliaDocs/Franklin.jl

[demo] add a demo with PrettyTables

Open

#791 opened on Feb 21, 2021

View on GitHub
 (0 comments) (0 reactions) (0 assignees)Julia (118 forks)batch import
demoseasygood first issue

Repository metrics

Stars
 (1,060 stars)
PR merge metrics
 (Avg merge 71d 9h) (4 merged PRs in 30d)

Description

Eg:

```julia:extable
#hideall
using PrettyTables
io = IOBuffer()
pretty_table(io, [1 5.0; 2 4.0], ["degree" "bound"], backend=:html);
println("~~~", String(take!(io)), "~~~")
```
\textoutput{extable}

This can make for a nice demo (maybe better if the demo also discusses input from CSV directly).

Contributor guide