rewrote welcome_new article; updated readme file; introduced /help command.

This commit is contained in:
Xiaohan-Tian
2025-08-21 23:05:22 -07:00
parent 0c54332401
commit f2355b2350
6 changed files with 184 additions and 67 deletions
+1 -1
View File
@@ -62,7 +62,7 @@ export const wrapXmlBlocksInContent = (content: string): string => {
if (!xmlBlocks || xmlBlocks.length === 0) return content;
let result = content;
for (const block of xmlBlocks) {
const fenced = '```\n' + block + '\n```';
const fenced = '```xml\n' + block + '\n```';
result = result.split(block).join(fenced);
}
return result;