We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b869957 commit 2368a37Copy full SHA for 2368a37
src/app/pipes/linkifyWithText.pipe.ts
@@ -25,7 +25,7 @@ export class LinkifyWithTextPipe implements PipeTransform {
25
let text = plainText.match(replacePattern2);
26
27
if(text && link){
28
- return `<a href='${link[1]}'>${text[1]}</a>`;
+ return `<a href='${link[1]}' target="_blank">${text[1]}</a>`;
29
}
30
31
return plainText;
0 commit comments