mirror of
https://github.com/Hilbis/Hilbish
synced 2025-04-04 04:33:23 +00:00
* fix: make lua implemented hilbish interfaces documented * fix: signature link in table of contents * fix: reduce function list to match in go generated docs * fix: toc appending * docs: enable docs for hilbish.messages * feat: add description gen, and more spacing between param listing * docs: add more detailed documentation for lua modules * docs: update hilbish.messages docs * fix: add description for lua doc'd modules, remove duplicate docs * docs: add back hilbish.jobs doc * feat: generate toc for lua modules * fix: add table heading * ci: add lua docgen * docs: put dirs.old doc on 1 line
35 lines
565 B
Lua
35 lines
565 B
Lua
-- @module greenhouse.page
|
|
local Object = require 'nature.object'
|
|
|
|
local Page = Object:extend()
|
|
|
|
function Page:new(title, text)
|
|
self:setText(text)
|
|
self.title = title or 'Page'
|
|
self.lazy = false
|
|
self.loaded = true
|
|
self.children = {}
|
|
end
|
|
|
|
|
|
function Page:setText(text)
|
|
self.lines = string.split(text, '\n')
|
|
end
|
|
|
|
function Page:setTitle(title)
|
|
self.title = title
|
|
end
|
|
|
|
function Page:dynamic(initializer)
|
|
self.initializer = initializer
|
|
self.lazy = true
|
|
self.loaded = false
|
|
end
|
|
|
|
function Page:initialize()
|
|
self.initializer()
|
|
self.loaded = true
|
|
end
|
|
|
|
return Page
|