File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff 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` ;
You can’t perform that action at this time.
0 commit comments