YUI 编辑:
相反
在换行符上?
如何告诉 YUI 编辑器将所有文本包含在 中并使用
而不是 < code>
如果用户发出换行符?
这里有一个例子来说明我想做的事情:
而不是这个:
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 并查找替换标签之外,您知道如何做到这一点吗?
更新: 我刚刚注意到,如果整个文本包含在 中,YUI 编辑器会在换行符上自动发出
>。 换句话说,问题是:
我如何告诉 YUI 编辑器 将整个文本包含在文本区域中 与
?
How do I tell the YUI-Editor to enclose all text into <p></p>
and use <p></p>
instead of <br>
if the user issues a linebreak?
Here comes an example to illustrate what I'm trying to do:
Instead of this:
The quick brown fox<br>jumps over the lazy dog
I would like to have this:
<p><p>The quick brown fox</p><p>jumps over the lazy dog</p></p>
Any idea how to do this besides parsing the whole html before saving it and finding-replacing the tags?
Update:
I just noticed, that the YUI Editor automagically issues <p></p>
on linebreaks if the whole text is enclosed in <p></p>
. In other words, the question would be:
How do I tell the YUI Editor to
enclose the whole text in the textarea
with<p></p>
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看起来您需要“ptags”配置选项:
如此处所述。
Looks like you want the "ptags" configuration option:
As documented here.