Fix stripped onclick warning on blog live-demo links - #5555
Merged
Conversation
Raw HTML with onclick and unrendered {{ title | escape }} template
syntax in four blog posts triggered @nuxtjs/mdc's unsafe-attribute
sanitizer, since Nuxt Content renders these posts and doesn't run
Nunjucks. Added LiveDemoLink.vue, a content component that tracks the
click via a real Vue handler instead.
✅ Deploy Preview for flowforge-website ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
sumitshinde-84
approved these changes
Aug 10, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.

Summary
<a onclick="capture('blog-live-demo', { reference: 'Blog: {{ title | escape }}' })">— leftover 11ty/Nunjucks-style templating that never resolves under Nuxt's@nuxt/content/@nuxtjs/mdcpipeline (blog is fully migrated), and theonclickattribute itself gets stripped by MDC's sanitizer regardless, producing a build warning.nuxt/components/content/LiveDemoLink.vue, a small MDC content component (same pattern asCtaImage.vue) that renders a plain<a>and firescapture('blog-live-demo', ...)via a real Vue@clickhandler.:live-demo-link{href="..." label="..."}MDC syntax.Test plan
npm run dev:nuxt, confirmed the[@nuxtjs/mdc] removing unsafe attributewarning no longer appearsbuild-downtime-loggerpost and confirmed the link renders correctly with noonclick/unresolved template text🤖 Generated with Claude Code