diff --git a/.lune/docsgen/markdown.luau b/.lune/docsgen/markdown.luau index 2b5ec41..e898cf2 100644 --- a/.lune/docsgen/markdown.luau +++ b/.lune/docsgen/markdown.luau @@ -97,7 +97,9 @@ end local function writeMarkdown(path: string, items: { moonwave.Item }) local start = os.clock() - local buf = "" + local buf = "\n" + buf ..= "# Reference" + for _, item in items do logger.log("info", "Generating docs for", item.name) buf = writeClass(buf, item.name, item.desc)