그누보드4 cheditor5버전을 쓰고있는데.. 링크 주소를 입력하면 자동으로 href링크가 생성되죠..
거기에 rel=nofollow 속성을 추가할수있습니다..
그누보드 설치폴더/cheditor5/cheditor.js파일을 열고
2932라인쯤에서 아래와 같이 수정하시면 됩니다..
checkDocLinks : function () {
var links = this.doc.links;
var len = links.length;
var host = location.host;
var i, href;
this.cheditor.links = [];
for (i=0; i < len; i++) {
if (!this.config.includeHostname) {
href = links[i].href;
if (href.indexOf(host) != -1) {
links[i].setAttribute('href', href.substring(href.indexOf(host) + host.length));
links[i].setAttribute("rel", "nofollow");
}
}
if (this.config.linkTarget !== '' && this.config.linkTarget != null) {
if (!(links[i].getAttribute('target'))) {
links[i].setAttribute('target', this.config.linkTarget);
links[i].setAttribute("rel", "nofollow");
}
}
if (GB.browser.msie) {
this.cheditor.links.push(links[i]);
}
}
},