1
0
mirror of https://github.com/lxsang/antd-web-apps synced 2024-11-20 02:18:20 +01:00
antd-web-apps/doc/controllers/IndexController.lua
2020-12-22 12:57:23 +00:00

23 lines
601 B
Lua

BaseController:subclass("IndexController")
function IndexController:index(...)
local file = io.open("/home/mrsang/doc/library.md", "r")
if file then
local content = ""
local md = require("md")
local callback = function(s) content = content .. s end
md.to_html(file:read("*a"), callback)
file.close()
self.template:set("data", content)
end
return true
end
function IndexController:actionnotfound(...)
self.template:setView("book")
return self:book(table.unpack({...}))
end
function IndexController:book(...)
return true
end