We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 72e2f43 commit c002db4Copy full SHA for c002db4
packages/site-kit/src/lib/markdown/renderer.ts
@@ -280,7 +280,7 @@ export async function render_content_markdown(
280
blockquote(token) {
281
let content = this.parser?.parse(token.tokens) ?? '';
282
if (content.includes('[!LEGACY]')) {
283
- content = `<details class="legacy"><summary><label>Legacy mode <button class="raised"></button></label></summary>${content.replace('[!LEGACY]', '')}</details>`;
+ content = `<details class="legacy"><summary>Legacy mode</summary>${content.replace('[!LEGACY]', '')}</details>`;
284
}
285
return `<blockquote>${content}</blockquote>`;
286
0 commit comments