blob: db420cecdd4e651124933fa6048151972daadf03 (
plain)
1
2
3
4
5
6
7
8
9
10
|
-- see /meta/mmm.dom for documentation
local d = require 'mmm.dom'
local lua = d.a { 'Lua', href = 'https://www.lua.org/' }
local fengari = d.a { 'fengari.io', href = 'https://fengari.io/' }
return d.article {
d.h1 'Lua',
d.p { lua, ' is fully supported using ', fengari, ' on the Client.' }
}
|