YUI编辑:<p>而不是换线?</p>

时间:2009-03-04 09:46:18

标签: javascript ruby-on-rails yui richtextbox richtextediting

如果用户发出换行符,如何告诉YUI-Editor将所有文字都包含在<p></p>中并使用<p></p>代替<br>

这里有一个例子来说明我正在尝试做的事情:

而不是:

The quick brown fox<br>jumps over the lazy dog

我想有这个:

<p><p>The quick brown fox</p><p>jumps over the lazy dog</p></p>

除了在保存并找到替换标签之前解析整个html之外,还有什么想法呢?

更新: 我刚刚注意到,如果整个文本都包含在<p></p>中,YUI编辑器会自动在换行符上发出<p></p>。换句话说,问题是:

  

如何告诉YUI编辑器   将整个文本括在文本区域中   与<p></p>

1 个答案:

答案 0 :(得分:6)

看起来你想要“ptags”配置选项:

var myEditor = new YAHOO.widget.Editor('msgpost', {
    height: '300px',
    width: '522px',
    dompath: true, //Turns on the bar at the bottom
    animate: true, //Animates the opening, closing and moving of Editor windows
    ptags: true
});
myEditor.render();

记录在案here