Remove arrays from README example

Signed-off-by: Thomas A. Christensen II <25492070+MillironX@users.noreply.github.com>
pull/2/head
parent 9ca2bb52ae
commit 6e88b8f657
Signed by: millironx
GPG Key ID: 139C07724802BC5D

@ -31,16 +31,16 @@ Node.
```julia
import EzXML: prettyprint
doc = html([
head([
doc = html(
head(
title("Kelpie.jl is awesome!"),
]),
body([
header([
),
body(
header(
h1("Dogs are cool"),
h2("Julia is cool"),
]),
main([
),
main(
img(;
src="/kelpie-on-sheep-back.jpg",
alt="A Kelpie herding sheep"
@ -49,9 +49,9 @@ doc = html([
p("Kelpies make great herding dogs for $animal.")
for animal in ["cows", "sheep", "chickens"]
]...,
]),
]),
])
),
),
)
prettyprint(doc)
```

Loading…
Cancel
Save