JuliaDocs/Franklin.jl

[demo] add a demo with PrettyTables

Open

#791 ouverte le 21 févr. 2021

Voir sur GitHub
 (0 commentaires) (0 réactions) (0 assignés)Julia (1 060 stars) (118 forks)batch import
demoseasygood first issue

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).

Guide contributeur