Lua#
You can customize variable docstr-lua-style
for the following value.
luadoc
- Kepler's specification (default)doxygen
- doxygen/Javadoc-like stylescriptum
- Lua based document generator to Markdownnil
- Respect to user's customization
Splitter#
If you are using style that requres spliiter; you can change the splitter by
customize the variable docstr-lua-splitter
.
The doxygen
style look like this,
-- taken from cgilua/src/cgilua/session.lua
-------------------------------------
-- Deletes a session.
-- @param id Session identification.
-------------------------------------
function delete (id)
assert (check_id (id))
remove (filename (id))
end