@banta/sdk 4.7.0 → 4.7.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/fesm2020/banta-sdk.mjs
CHANGED
|
@@ -224,7 +224,7 @@ class BantaMarkdownToHtmlPipe {
|
|
|
224
224
|
const linkRenderer = this.renderer.link;
|
|
225
225
|
this.renderer.link = (href, title, text) => {
|
|
226
226
|
const html = linkRenderer.call(this.renderer, href, title, text);
|
|
227
|
-
return html.replace(/^<a /, '<a target="_blank" rel="noopener" ');
|
|
227
|
+
return html.replace(/^<a /, '<a target="_blank" rel="noopener nofollow" ');
|
|
228
228
|
};
|
|
229
229
|
}
|
|
230
230
|
transform(value) {
|