---@diagnostic disable: undefined-global
return {
s(
'html:5',
fmt(
[[
{title}
{body}
]],
{
title = i(1, 'my title'),
style = i(2, 'style.css'),
script = i(3, 'main.js'),
body = i(0),
}
)
),
s('anchor', fmt([[{}]], { i(1), i(2) })),
s(
'journal',
fmt(
[[
{}
{}
]],
{
i(1, os.date('%Y-%m-%d, %a')),
i(0),
}
)
),
}