We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8e935f2 commit cb558eaCopy full SHA for cb558ea
1 file changed
src/plugins/process-markdown.ts
@@ -293,7 +293,7 @@ async function transformStatic2Dynamic(content: string): Promise<string> {
293
const langTag = m.lang || 'js';
294
const metaSuffix = cleanMeta ? ` ${cleanMeta}` : '';
295
296
- const staticSection = `**Static:**\n\n\`\`\`${langTag}${metaSuffix}\n${m.code}\`\`\``;
+ const staticSection = `**Static (Recommended):**\n\n\`\`\`${langTag}${metaSuffix}\n${m.code}\`\`\``;
297
const dynamicSection = `**Dynamic:**\n\n\`\`\`${langTag}${metaSuffix}\n${dynamicCode}\n\`\`\``;
298
299
return {
0 commit comments