如何在所有“ a”标签上添加“ rel = nofollow”?

时间:2020-09-26 15:09:19

标签: tinymce tinymce-5

我想在所有“ a”标签上添加“ rel = nofollow”。

tinymce.init({
    selector: 'textarea',
    extended_valid_elements: 'img[!src|alt],a[!href|target|width|height|title|rel=nofollow]',
    valid_elements : 'p,br,a,strong,span[style],em,ul,ol,li',
});

1 个答案:

答案 0 :(得分:0)

使用上面包含的代码,我得到了您想要的行为,rel="nofollow"被添加到了<a>标签中。这是Tiny Fiddle演示: http://fiddle.tinymce.com/Wthaab

在小提琴中您得到不同的结果吗?