8 lines
154 B
Typst
8 lines
154 B
Typst
#let image(source, width: "400px") = {
|
|
html.elem("img", attrs: (
|
|
src: "/static/articles/" + source,
|
|
alt: source,
|
|
width: str(width),
|
|
))
|
|
}
|
|
|