JuliaDocs/Franklin.jl

[demo] add a demo with PrettyTables

Open

#791 geöffnet am 21. Feb. 2021

Auf GitHub ansehen
 (0 Kommentare) (0 Reaktionen) (0 zugewiesene Personen)Julia (1.060 Stars) (118 Forks)batch import
demoseasygood first issue

Beschreibung

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