Mercurial Hosting > luan
view website/src/docs.html.luan @ 502:d3183a330ff5
improve the __index metamethod to work with any type;
simplify luan_proxy to eliminate base;
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Tue, 19 May 2015 17:57:20 -0600 |
parents | 598123096772 |
children | 92c3d22745b8 |
line wrap: on
line source
local Io = require "luan:Io" local Html = require "luan:Html" local Http = require "luan:http/Http" local Shared = require "site:/Shared" function respond() Io.stdout = Http.response.text_writer() %> <html> <head> <% Html.simply_html_head() %> <title>Luan Documentation</title> </head> <body> <div container> <% Shared.header() %> <h1 margin-bottom="1em">Luan Documentation</h1> <big> <p> <a href="tutorial.html">Tutorial</a><br> <a href="pil.html">Programming in Lua (book)</a><br> <a href="manual.html">Reference Manual</a><br> <a href="diff.html">How Luan differs from Lua</a><br> </p> </big> </div> <% Html.simply_html_body_bottom() %> </body> </html> <% end