Mercurial Hosting > luan
view website/src/docs.html.luan @ 537:5fed3de0aac7
add Luan.assert_double and add assert_* to Web_search query env
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Mon, 01 Jun 2015 00:42:00 -0600 |
parents | 7bc63886d4f2 |
children | 7cc9d4a53d3b |
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" return function() 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