blob: 62e79f1da0865f899ee1eb0cfc3bd8d5d7d4e68e (
plain)
1
2
3
4
5
6
7
8
9
|
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.' }
}
|