You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Control how people navigate your changelog and stay up to date with your product information.
44
+
45
+
### Table of contents
46
+
47
+
Each `label` for an `Update` automatically creates an entry in the right sidebar's table of contents. This is the default navigation for your changelog:
14
48
15
49
<Frame>
16
50
<img
@@ -25,43 +59,60 @@ Each `Update` element label is automatically used to create a table of contents
25
59
/>
26
60
</Frame>
27
61
28
-
## Tag filters
62
+
### Tag filters
63
+
64
+
Add `tags` to your `Update` components to replace the table of contents with tag filters. Users can filter the changelog by selecting one or more tags:
29
65
30
-
Adding tags to your `Update` components will make a tag list appear on the right side of your changelog document which can be used for filtering entries:

84
+
<Frame>
85
+
<img
86
+
src="/images/changelog-filters-light.png"
87
+
alt="Changelog in light mode with the Peppermint tag filter selected."
88
+
className="block dark:hidden"
89
+
/>
90
+
<img
91
+
src="/images/changelog-filter-dark.png"
92
+
alt="Changelog in dark mode with the Peppermint tag filter selected."
93
+
className="hidden dark:block"
94
+
/>
48
95
</Frame>
49
96
50
97
<Tip>
51
-
Some page settings may automatically hide the table of contents and changelog filters: when your page has mode: 'custom', 'center', or 'wide'. Learn more about [page modes](/pages#page-mode).
98
+
The table of contents and changelog filters are hidden when using `custom`, `center`, or `wide` page modes. Learn more about [page modes](/pages#page-mode).
52
99
</Tip>
53
100
54
-
## Subscribable changelogs
101
+
###Subscribable changelogs
55
102
56
-
Using the `Update`component on your changelog page also automatically creates a subscribable RSS feed for your changes at the page URL + "/rss.xml".
103
+
Using `Update`components creates a subscribable RSS feed at your page URL + `/rss.xml`. For example, `mintlify.com/docs/changelog/rss.xml`. New updates are automatically included in the feed when published.
57
104
58
105
<divstyle={{ border: '2px solid #ff00ff' }}>
59
106
TODO: insert XML screenshot
60
107
</div>
61
108
62
-
After publishing a new `Update` on the page, it will be automatically included in the RSS feed for that page. RSS feeds can be integrated with Slack, email, or other subscription tools for your users.
109
+
RSS feeds can integrate with Slack, email, or other subscription tools to notify users of product changes. Some options include:
0 commit comments