June 25, 2024

June 2024

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.

1{
2 "@context": "https://schema.org",
3 "@type": "TechArticle",
4 "headline": "API Authentication Guide",
5 "datePublished": "2024-06-15",
6 "technicalAudience": "Software Developers"
7}

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
1---
2no-image-zoom: true
3---

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.

1<body>
2 <h1>Available Products</h1>
3 {% if products %}
4 <ul>
5 {% for product in products %}
6 <li class="product">
7 <h2>{{ product.name }}</h2>
8 <p class="price">${{ product.price }}</p>
9 <p>{{ product.description }}</p>
10 {% if product.in_stock %}
11 <p><strong>Status:</strong> In Stock</p>
12 {% else %}
13 <p><strong>Status:</strong> Out of Stock</p>
14 {% endif %}
15 </li>
16 {% endfor %}
17 </ul>
18 {% else %}
19 <p>No products are available at the moment.</p>
20 {% endif %}
21</body>