Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 12 additions & 12 deletions config/newsroom_videos.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,21 +12,21 @@
"videoId": "KbT7Pw6j46E"
},
{
"image_url": "https://i.ytimg.com/vi/gn6765Le_zQ/hqdefault.jpg",
"title": "AsyncAPI Community WG Meeting, Tuesday September 23rd 2025",
"description": "https://github.com/asyncapi/community/issues/2066.",
"videoId": "gn6765Le_zQ"
"image_url": "https://i.ytimg.com/vi/B773vgCaCkU/hqdefault.jpg",
"title": "AsyncAPI Community WG Meeting, Tuesday October 21st 2025",
"description": "https://github.com/asyncapi/community/issues/2087.",
"videoId": "B773vgCaCkU"
},
{
"image_url": "https://i.ytimg.com/vi/m-aLlapR2Mg/hqdefault.jpg",
"title": "AsyncAPI Community WG Meeting , Tuesday September 9th 2025",
"description": "https://github.com/asyncapi/community/issues/2060.",
"videoId": "m-aLlapR2Mg"
"image_url": "https://i.ytimg.com/vi/nNl0HUdBnmg/hqdefault.jpg",
"title": "Kickstart your AsyncAPI journey with Springwolf",
"description": "Join us on the 14th of October at 4 PM UTC for a deep dive into Springwolf, the open-source solution for generating AsyncAPI ...",
"videoId": "nNl0HUdBnmg"
},
{
"image_url": "https://i.ytimg.com/vi/7vvdmDVZPX0/hqdefault.jpg",
"title": "AsyncAPI Community WG Meeting , Tuesday July 29th 2025",
"description": "https://github.com/asyncapi/community/issues/1988.",
"videoId": "7vvdmDVZPX0"
"image_url": "https://i.ytimg.com/vi/Mkd7FgKOMNE/hqdefault.jpg",
"title": "One Tool, One Flow: AsyncAPI's New Take on Code/Docs/Config Generation",
"description": "Join us on September 30th at 4PM UTC for the first session of our AsyncAPI webinar series with Łukasz. In “One Tool, One Flow: ...",
"videoId": "Mkd7FgKOMNE"
}
Comment on lines +27 to 31
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟡 Minor

Replace HTML entity with plain character in JSON.

Line 28 contains ' which is HTML entity encoding for an apostrophe. In JSON, this should be a plain single quote character ('). Using HTML entities is unnecessary here and could cause issues if the code expects plain text without entity decoding.

- "title": "One Tool, One Flow: AsyncAPI's New Take on Code/Docs/Config Generation",
+ "title": "One Tool, One Flow: AsyncAPI's New Take on Code/Docs/Config Generation",
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
"image_url": "https://i.ytimg.com/vi/Mkd7FgKOMNE/hqdefault.jpg",
"title": "One Tool, One Flow: AsyncAPI's New Take on Code/Docs/Config Generation",
"description": "Join us on September 30th at 4PM UTC for the first session of our AsyncAPI webinar series with Łukasz. In One Tool, One Flow: ...",
"videoId": "Mkd7FgKOMNE"
}
"image_url": "https://i.ytimg.com/vi/Mkd7FgKOMNE/hqdefault.jpg",
"title": "One Tool, One Flow: AsyncAPI's New Take on Code/Docs/Config Generation",
"description": "Join us on September 30th at 4PM UTC for the first session of our AsyncAPI webinar series with Łukasz. In "One Tool, One Flow: ...",
"videoId": "Mkd7FgKOMNE"
}
🤖 Prompt for AI Agents
In config/newsroom_videos.json around lines 27 to 31, the title string contains
the HTML entity ' instead of a plain apostrophe; update the title value to
replace ' with the plain single-quote character (') so the JSON stores the
correct apostrophe character and remains valid for consumers that expect plain
text.

]
Loading