Skip to navigation

RSS Feed Integration

Added support for RSS feeds to keep users updated on documentation changes. Teams can now offer automated notifications for their documentation.

JSON-LD Enhancement

Implemented structured data support through JSON-LD for improved SEO. Documentation pages now provide richer information to search engines and social platforms.

{
"@context": "https://schema.org",
"@type": "TechArticle",
"headline": "API Authentication Guide",
"datePublished": "2024-06-15",
"technicalAudience": "Software Developers"
}
Read the docs

Image Zoom Controls

Added configurable image zoom functionality with custom triggers and behaviors. Users can now better examine diagrams and technical illustrations in documentation.

page.mdx
---
no-image-zoom: true
---
Read the docs

Syntax Extension Support

Added support for additional syntax highlighting languages including BAML and Jinja. Documentation can now properly display a wider range of code examples.

<body>
<h1>Available Products</h1>
{% if products %}
<ul>
{% for product in products %}
<li class="product">
<h2>{{ product.name }}</h2>
<p class="price">${{ product.price }}</p>
<p>{{ product.description }}</p>
{% if product.in_stock %}
<p><strong>Status:</strong> In Stock</p>
{% else %}
<p><strong>Status:</strong> Out of Stock</p>
{% endif %}
</li>
{% endfor %}
</ul>
{% else %}
<p>No products are available at the moment.</p>
{% endif %}
</body>