Home
Blog
Product Updates
Blog
What Aveiro’s Product Hunt Launch Day Actually Looked Like
Seedance 2.0 Comes to Aveiro — With Video Uploads and Bunny.net Under the Hood
Connect Aveiro to Any AI Agent in 10 Seconds — One MCP URL
How to Migrate from Squarespace to Aveiro
Integrating ByteDance Models Directly: What We Learned Building Aveiro
Auto-update Docs and Blog with Cursor Cloud Agents and the Aveiro API
What Is Connected Publishing?
Website CTA Analytics: Beyond Page Views
How to Connect a Custom Domain on Aveiro
Edit Your Website with AI Without Breaking Layout
Build a Portfolio Website on Aveiro
The Hidden Cost of a Fragmented Publishing Stack
How to Start a Newsletter From Your Website
Build a Documentation Site with Collections and MDX
Embed a Signup Form on Any Site
Your First Week on Aveiro
Updates
Org-Wide Newsletters Can Pick a Host Site
Dashboard Home, Onboarding Personalization, and Campaign Tweaks
Newsletter Web Archive — Publish Sent Campaigns as Site Pages
MCP Stdio Social Parity and a Taller Website-Mockup Wizard
Collection Blocks on Translated Pages Show the Right Language
MCP Tool Safety Hints — Hosted and Stdio Servers Now Match
Engagement Metrics on Published Posts — See What Sent Posts Did
Website Mockup Videos — Film a Live URL Into the Social Library
Translation Progress Fix — Stale Retranslate Totals and Readiness Refresh
Orbit Rename and Social Review Polish — Hover Cards and Add Menu Connect
Dashboard Polish — Published Post Summary, Ad Auto-Save, and Asset Previews
Translation Language Limits by Plan — Pricing Page Shows Language Allowances
Localized Sidebar and Header Navigation Titles
Translation Jobs Now Translate Page Metadata Text
Retranslate Jobs: Progress, Completion, and Republication Fixes
Instagram Story Publishing — Feed and Stories From One Draft
Agent Authoring Guide, Site Media API, and Advisory Lint
Social Engagement Metrics for Agents — Learn What Performs Before You Draft
Editor Polish — Media Breakout, Toolbar Fixes, and Ad Banner Cards
Locale-Prefixed Nav Links and Translation Publish Guards
Ad Placements on Layout Templates — Per-Template Overrides
Ads in the Layout Tab — Chrome Overrides, Live Preview, One Disclosure Label
Premium Ad Banners Beta — Organization Inventory on Every Site
Newsletter click tracking by element
Searchable Orbit Space Picker — Find Spaces in Large Hubs
Org Assets AI Composer — Image and Video With Reference Attachments
Plan Storage Limits — Metered Bytes at Rest for Media, Video, and Agent Uploads
Org-Wide Asset Management — Browse, Bulk Move, and Delete in One Place
Direct Media Uploads for Agents — Push Local Images and Videos Without a Public URL
Social Update — Publishing Credits Pool
Social Fix — First-Comment Outcome on the Post Row
Social Update — First Comments Publish With the Post
MCP Fix — Per-Platform First Comments on the Stdio Proxy
MCP Marketplace Template Clone — Bootstrap Sites from the Gallery
Homepage Rework — Template to Publish, Free Trial, and MCP for Agents
Usage Counters Now Reset on Your Billing Cycle
Social Dashboard: Post Sections, Scheduling Picker, and Platform Comments
Social Dashboard: Upload Aspect Ratios and New Post Dialog
MCP Fix — aveiro_update_page Retries on Revision Conflicts
LinkedIn Joins Social Publishing — Personal Profiles and Company Pages
Quasar Max Chat Upgrades to Claude Sonnet 5
Recoverable Failed Social Posts
Social Caption Guards and Safer Publish Dates
Media Library Folders and Unified Picker — One Org Library Across Sites
Newsletter Agent API and MCP Tools — Draft Campaigns from Cursor and Claude
Plain-Voice Quasar Chat Errors
Clearer AI Credit Messages and Fewer Continue Prompts
MDX Placeholder Tags Render as Text
AI and MCP Page Reordering — Move, Sort, and Reorder Site Structure
Translation Jobs: Live Progress, Cost Estimates, and Cleaner Pickers
Translations UI Polish and Connect Claude
Character References for Social AI Media + First Comment Field
AI Video Generation — Short Clips from the Site Editor
Social Org Media Browsing and Register-by-URL — Reuse Dashboard Uploads in Agent Drafts
MCP Fix — tools/call Accepts null and Stringified Arguments
MCP Fix — Parameterless Tools Work Without an Arguments Field
Multi-Aspect AI Media for Social Posts — Platform Crops in One Call
Social Agent API and MCP Tools — Draft Posts from Cursor and Claude
Social Publishing Beta — Draft, Approve, and Schedule Instagram and Threads
Once UI Effects on Published Sites
MDX Code Blocks and Smarter Validation
Subscribe Users from Your Product with the Audience API
Agency Template Blocks Are Now Reusable Page Builder Components
Sell Merch on Your Aveiro Site with Fourthwall
Visitor Login and Support Chat on Your Site
Safer AI Edits and Publish Guards
Newsletter Deliverability Dashboard
TrademarkTrademark
Ctrl k
Search...
Sign up
Sponsored
Aveiro
aveiro.app
TrademarkTrademark© Aveiro. All rights reserved.
Built with Aveiro

MDX Code Blocks and Smarter Validation

Expanded syntax highlighting, list typography that matches your site prose, and validation that ignores component names inside code samples — so docs and API syncs stop failing on legitimate examples.
Updated 20d ago
Once UI Effects on Published Sites
Subscribe Users from Your Product with the Audience API
In short
Fenced code blocks now highlight more languages, list items inherit your site's body typography, and MDX validation skips tags inside code samples — fixing false 422 errors when syncing technical docs through the API or Quasar.

What we shipped

Three improvements landed together for anyone writing docs, tutorials, or API-driven content:

Expanded syntax highlighting

Fenced markdown code blocks and the CodeBlock catalog component now support a wider set of language tags — including go, rust, python, java, kotlin, swift, graphql, yaml, toml, and more alongside the existing ts, tsx, js, jsx, json, bash, css, and html tags. Use fenced blocks for single snippets or the CodeBlock component when you need tabs or multiple snippets with a copy button.

Smarter MDX validation

Aveiro validates MDX to ensure only registered components render on your site. Previously, a fenced block that mentioned a component name — for example a tsx sample showing <Button> — could be misread as a real tag and rejected with 422 INVALID_MDX. Validation now skips fenced code blocks and inline code spans. Component names inside examples stay verbatim; only tags outside code are checked. The same rule applies in the editor, through Quasar, and on the Content API.

List typography matches body prose

Bullet and numbered list items now inherit your site's body type size, line height, and color — the same tokens paragraphs use. Lists look consistent in the editor preview and on published pages instead of falling back to a generic default.

Why it matters

Documentation sites and developer blogs lean heavily on code samples. A validation layer that cannot tell the difference between a rendered block and a fence explaining how to use one creates friction — especially when syncing pages from CI or asking Quasar to draft API reference content.
<Hero>
tsx
These changes keep the safety net (no invented components on the live site) without punishing legitimate technical writing.

Recommended workflow

  • Use fenced blocks for single-language snippets in Source mode — pick a language tag from the supported set.
  • Use CodeBlock from the catalog when you need multiple snippets or a copy button.
  • Sync docs via API with confidence that example JSX in fences will not trip validation — see Create a page for the INVALID_MDX rules.
  • Preview lists after changing site typography — bullets should match paragraph text automatically.
For MDX conventions and supported languages, see Writing with MDX in platform docs.

What is next

We continue expanding the component catalog Quasar can use safely and tightening validation at the edges — without blocking the code-heavy pages documentation teams depend on.