This was briefly mentioned in #92 [here](https://github.com/getkirby/editor/issues/92#issuecomment-640616471), but I decided to open a separate issue. We need to put `rel="nofollow"` on all external links in our articles for better SEO. Currently, Kirby only adds `rel="noopener noreferrer"`. What's worse is that even if I add `nofollow` manually in the TXT file, it gets removed when I save the article later in the panel. --- Currently, I add `nofollow` with a custom `paragraph.php` snippet: ```php = str_replace('noopener noreferrer', 'noopener noreferrer nofollow', $content) ?> ``` ...but it would be nice to be able to select whether you want `nofollow` or not.
This was briefly mentioned in #92 here, but I decided to open a separate issue.
We need to put
rel="nofollow"on all external links in our articles for better SEO. Currently, Kirby only addsrel="noopener noreferrer".What's worse is that even if I add
nofollowmanually in the TXT file, it gets removed when I save the article later in the panel.Currently, I add
nofollowwith a customparagraph.phpsnippet:...but it would be nice to be able to select whether you want
nofollowor not.