fix: update example formatting in README generation to improve readability

This commit is contained in:
mikerambil
2025-07-10 22:37:46 -05:00
parent 6f1bf35aff
commit 235b794bef

View File

@@ -97,9 +97,7 @@ function renderExamples(examples) {
if (!examples || !examples.length) return '';
let out = '';
examples.forEach((ex) => {
out += `- **${ex.description || ''}**\n\n
\`\`\`sh\n${ex.code}\n\`\`\`
`;
out += `- **${ex.description || ''}**\n\n${ex.code}\n`;
});
return renderSection('Examples', out);
}