Here is how you can setup Public Changelog in Fibery.
How it looks: . | Fibery
How it works:
Action Buttons:
Link Features and Bugs
Generate changelog text
{!Features:Name,Public Announcement!}
<%
const fibery = context.getService('fibery');
for (const feature of Entity.Features) {
const text = await fibery.getDocumentContent(feature["Public Announcement"], 'md');
if (text) {%>
## <%= feature.Name%>
<%= text%>
<%}
}%>
## 🦐 Fixed Bugs
{- Bugs:Name -}