Small Docs test

This commit is contained in:
Robert Jelic
2025-09-13 09:54:09 +02:00
parent 7c5d735a51
commit 72f9ac2a1e
25 changed files with 894 additions and 799 deletions

View File

@@ -0,0 +1,21 @@
local helper = require("utils.helper")
local logger = require("utils.logger")
local globalParser = {}
function globalParser.parse(annotations, line)
local global = {
description = nil
}
if globalParser.handlers then
helper.applyAnnotations(annotations, global, globalParser.handlers)
end
return global
end
function globalParser.setHandlers(handlers)
globalParser.handlers = handlers
end
return globalParser