diff --git a/apify-docs-theme/src/markdown.js b/apify-docs-theme/src/markdown.js index ad4bff0c1b..9af65e34a1 100644 --- a/apify-docs-theme/src/markdown.js +++ b/apify-docs-theme/src/markdown.js @@ -20,7 +20,7 @@ const incrementHeadingLevels = () => (tree) => { const removeGitCliffMarkers = () => (tree) => { visitParents(tree, 'html', (node) => { - const gitCliffMarkerRegex = /generated by git-cliff/ig; + const gitCliffMarkerRegex = /generated by git-cliff|git-cliff-unreleased/ig; const match = gitCliffMarkerRegex.exec(node.value); if (match) node.value = '';