Hi,
I would like to have my code “auto-documented” based on the comments taking advantage of LuaDoc http://keplerproject.github.io/luadoc/manual.html
If I am correct, lua Glider has LuaDoc “bundled” with it. I tried to add LuaDoc comments in my code. I looks like glider “understands” that code, but I could not see my documentation in any way.
This is the commented section
---@extends TextInput --@param params table with the properties of the TextInput --@param aux in case user called TextField:new function TextField.new(params, aux) if params==TextField then --resolve mistake of calling :new instated of .new params=aux end
In the autocomplete I cannot see any info of my function
In Source->Show Documentation does not show anything either.
Is it possible to further integrate with LuaDoc in order to export my documentation to HTML?