Skip to content

Commit 685bd93

Browse files
authored
docs(website): include tag names in llms.txt (#13322)
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 9434684 commit 685bd93

File tree

1 file changed

+2
-3
lines changed
  • packages/website/build-scripts/llms-txt-generation

1 file changed

+2
-3
lines changed

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)