From 638c017f0aaa8e0f54cd2db5702787d46506fb7c Mon Sep 17 00:00:00 2001 From: Erica Marigold Date: Sun, 23 Feb 2025 12:08:57 +0000 Subject: [PATCH] chore(lune): use proper markdown heading hierarchy in docsgen --- .lune/docsgen/markdown.luau | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.lune/docsgen/markdown.luau b/.lune/docsgen/markdown.luau index 1348212..5ae657b 100644 --- a/.lune/docsgen/markdown.luau +++ b/.lune/docsgen/markdown.luau @@ -4,7 +4,7 @@ local moonwave = require("./moonwave") local logger = require("./log") local function writeSectionHeader(buf: string, title: string) - buf ..= `## {title}\n` + buf ..= `### {title}\n` return buf end @@ -14,7 +14,7 @@ local function writeRef(buf: string, name: string, fragment: string?) end local function writeClass(buf: string, name: string, desc: string) - buf ..= `# \`{name}\`\n` + buf ..= `## \`{name}\`\n` buf ..= desc buf ..= `\n\n` return buf @@ -49,7 +49,7 @@ local function writeFunction( ) local sep = if type == "method" then ":" else "." local declaredSignature = `{class}{sep}{name}` - buf ..= `### \`{name}\`\n` + buf ..= `#### \`{name}\`\n` if private then buf ..= `> [!IMPORTANT]\n` @@ -148,7 +148,7 @@ local function writeMarkdown(path: string, items: { moonwave.Item }) continue end - buf ..= `### \`{type.name}\`\n` + buf ..= `#### \`{type.name}\`\n` if type.private then buf ..= `> [!IMPORTANT]\n` buf ..= `> This is a private type. It may be exported publicly, but try to avoid\n`