From 3a28f2a1d7c324964b8ed2ae5460093cd0fc6648 Mon Sep 17 00:00:00 2001 From: "mintlify[bot]" <109931778+mintlify[bot]@users.noreply.github.com> Date: Mon, 15 Dec 2025 16:23:48 +0000 Subject: [PATCH] Update create/changelogs.mdx Co-Authored-By: mintlify[bot] <109931778+mintlify[bot]@users.noreply.github.com> --- create/changelogs.mdx | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/create/changelogs.mdx b/create/changelogs.mdx index e48b722a4..b3b493a62 100644 --- a/create/changelogs.mdx +++ b/create/changelogs.mdx @@ -106,6 +106,36 @@ The RSS feed publishes entries when you add new `Update` components and when mod RSS feed entries contain pure Markdown only. Components, code, and HTML elements are excluded. Use the `rss` property to provide alternative text descriptions for RSS subscribers when your updates include content that is excluded. +#### Importing snippets with Update components + +You can import [reusable snippets](/create/reusable-snippets) containing `Update` components into your changelog pages. Updates from imported snippets are automatically included in the RSS feed. + +```mdx Example changelog.mdx with snippet import +--- +title: "Changelog" +description: "Product updates and announcements" +rss: true +--- + +import LatestUpdates from "/snippets/latest-updates.mdx"; + + + + + Released a new version of the Spearmint flavor. + +``` + +```mdx Example snippets/latest-updates.mdx + + Added a new Wintergreen flavor. + + Released a new version of the Spearmint flavor, now with 10% more mint. + +``` + +Both absolute paths (`/snippets/latest-updates.mdx`) and relative paths (`../snippets/latest-updates.mdx`) are supported for snippet imports. + ```xml Example RSS feed