Skip to content

Commit 5e32df1

Browse files
committed
docs(website): include tag names in llms.txt component listing
Each component entry in llms.txt now shows its custom element tag name alongside the description for easier discoverability by external tools.
1 parent 3a88b2c commit 5e32df1

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

  • packages/website/build-scripts/llms-txt-generation

packages/website/build-scripts/llms-txt-generation/index.mjs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -296,10 +296,9 @@ import "@ui5/webcomponents/dist/Button.js";
296296
}
297297

298298
// Show description if it's meaningful (not empty)
299-
const description = component.description ? ` - ${component.description}` : '';
300-
content += `- [${component.name}](${url})${description}\n`;
299+
const description = component.description ? `\n - description: ${component.description}` : '';
300+
content += `#### [${component.name}](${url})\n - tag: \`${component.tagName}\`${description}\n\n`;
301301
});
302-
content += '\n';
303302
});
304303

305304
content += `## Documentation

0 commit comments

Comments
 (0)