Skip to content

Commit 813b196

Browse files
committed
chore: Format
1 parent 7941040 commit 813b196

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

scripts/generate_attribute_docs.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ async function generateAttributeDocs() {
109109
// Generate markdown files for each category
110110
for (const [category, attributes] of Object.entries(categories)) {
111111
// Add autogenerated warning
112-
let markdown = `<!-- THIS FILE IS AUTO-GENERATED. DO NOT EDIT DIRECTLY. -->\n\n`;
112+
let markdown = '<!-- THIS FILE IS AUTO-GENERATED. DO NOT EDIT DIRECTLY. -->\n\n';
113113
markdown += `# ${category.charAt(0).toUpperCase() + category.slice(1)} Attributes\n\n`;
114114

115115
// Sort attributes alphabetically by key
@@ -127,11 +127,11 @@ async function generateAttributeDocs() {
127127
}
128128

129129
// Create index.md file that links to all categories
130-
let indexContent = `<!-- THIS FILE IS AUTO-GENERATED. DO NOT EDIT DIRECTLY. -->\n\n`;
131-
indexContent += `# Attribute Documentation\n\n`;
132-
indexContent += `This directory contains documentation for all available attributes.\n\n`;
133-
indexContent += `## Available Categories\n\n`;
134-
130+
let indexContent = '<!-- THIS FILE IS AUTO-GENERATED. DO NOT EDIT DIRECTLY. -->\n\n';
131+
indexContent += '# Attribute Documentation\n\n';
132+
indexContent += 'This directory contains documentation for all available attributes.\n\n';
133+
indexContent += '## Available Categories\n\n';
134+
135135
// Generate links to each category
136136
for (const category of Object.keys(categories).sort()) {
137137
indexContent += `- [\`${category}\` Attributes](./${category}.md)\n`;

0 commit comments

Comments
 (0)