fixing minor template parse errors for transcript pages#1186
Draft
LiamRandall wants to merge 3 commits into
Draft
fixing minor template parse errors for transcript pages#1186LiamRandall wants to merge 3 commits into
LiamRandall wants to merge 3 commits into
Conversation
Signed-off-by: Liam Randall <liam@cosmonic.com>
✅ Deploy Preview for dreamy-golick-5f201e ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
Contributor
🔎 Structured data validation
|
| Kind | Count |
|---|---|
no about or mentions (M12 entity refs) |
526 |
Warnings don't fail the build — they surface authoring gaps that should be backfilled when convenient (typically missing M12 about/mentions entity refs).
⚙️ Generated by ci_structured_data.yml • structured-data spike
Signed-off-by: Liam Randall <liam@cosmonic.com>
Signed-off-by: Liam Randall <liam@cosmonic.com>
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.
Fixes applied
#1 softwareHelp was a bare URL │ src/pages/_index/index.tsx:47 │ Wrapped as { '@type': 'CreativeWork', url: 'https://wasmcloud.com/docs/' } │
#2 isPartOf: { '@type': 'Series' } (invented │ src/theme/wasmcloud/community/video-seo.tsx:339 │ Changed to '@type': 'CreativeWorkSeries' — the schema.org-canonical CreativeWork subtype │
│ type) │ │
#3 transcribes (not a schema.org property) │ src/theme/wasmcloud/community/video-seo.tsx:336 │ Removed transcribes; replaced with associatedMedia: { '@id': videoObjectId } — a valid Article property whose range (MediaObject)
Header doc-comment also updated to match. npm run build is green.
Verified emission on build/index.html (homepage SoftwareApplication) and build/community/2026-05-27-community-meeting-transcript/index.html (transcript Article): softwareHelp is now a CreativeWork object, isPartOf is CreativeWorkSeries,
transcribes is gone, associatedMedia correctly references the meeting's #video @id.
Flag for review (per the brief's request): transcript pages still emit BOTH a BlogPosting (from Docusaurus's BlogPostPageStructuredData via blog-post-schema.tsx) and an Article (from video-seo.tsx). Both describe the same page. The Article
carries the transcript-specific relationships (associatedMedia → VideoObject, isPartOf → CreativeWorkSeries, speakers as mentions) that the BlogPosting doesn't. Two safe options to deduplicate:
Option 1 is mechanically smaller. Tell me which to take and I'll make the change.
Validators: hit the homepage (https://wasmcloud.com/) and any transcript page (e.g. https://wasmcloud.com/community/2026-05-27-community-meeting-transcript/) in validator.schema.org (https://validator.schema.org/) and Google Rich Results once
deployed; both flagged nodes should now report 0 errors. Re-run Ahrefs Site Audit issue c22e9647-5a8f-4352-8b38-14cb66d7f101 after the next deploy to confirm.