diff --git a/src/Squidex/app/shared/components/help-markdown.pipe.ts b/src/Squidex/app/shared/components/help-markdown.pipe.ts index 929c0a0dd..641450208 100644 --- a/src/Squidex/app/shared/components/help-markdown.pipe.ts +++ b/src/Squidex/app/shared/components/help-markdown.pipe.ts @@ -11,7 +11,11 @@ import * as Marked from 'marked'; const renderer = new Marked.Renderer(); renderer.link = (href, title, text) => { - return `${text} `; + if (!href.startsWith('http')) { + href = `https://docs.squidex.io/${href}`; + } + + return `${text} `; }; @Pipe({