From 4ad55c9f52fa063b7eaf1d3d0c538866c4c677f3 Mon Sep 17 00:00:00 2001 From: Erica Marigold Date: Sun, 23 Feb 2025 11:56:52 +0000 Subject: [PATCH] chore(lune): add `@generated` comment and heading for docsgen --- .lune/docsgen/markdown.luau | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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)