> For clean Markdown content of this page, append .md to this URL. For the complete documentation index, see https://buildwithfern.com/learn/llms.txt. ## RSS Feed Integration seo, integrations Added support for RSS feeds to keep users updated on documentation changes. Teams can now offer automated notifications for their documentation. ## JSON-LD Enhancement seo Implemented structured data support through JSON-LD for improved SEO. Documentation pages now provide richer information to search engines and social platforms. ```json { "@context": "https://schema.org", "@type": "TechArticle", "headline": "API Authentication Guide", "datePublished": "2024-06-15", "technicalAudience": "Software Developers" } ``` Read the docs ## Image Zoom Controls writing-content Added configurable image zoom functionality with custom triggers and behaviors. Users can now better examine diagrams and technical illustrations in documentation. **`page.mdx`** ```mdx page.mdx --- no-image-zoom: true --- ``` Read the docs ## Syntax Extension Support writing-content Added support for additional syntax highlighting languages including BAML and Jinja. Documentation can now properly display a wider range of code examples. ```html
${{ product.price }}
{{ product.description }}
{% if product.in_stock %}Status: In Stock
{% else %}Status: Out of Stock
{% endif %}No products are available at the moment.
{% endif %} ```