gpt4 book ai didi

javascript - Quill 格式化所有文本

转载 作者:行者123 更新时间:2023-11-28 02:43:49 25 4
gpt4 key购买 nike

我正在使用 Quill 编辑器,代码如下:

var quill = new Quill('#editor-container', {
placeholder: 'Compose an epic...',
});

quill.format('header', 'true');

我的目标是让所有文本成为标题 (h1)。但是,当您返回时,它会返回到一个段落。

最佳答案

您的代码是正确的。但是,您使用了错误的编辑器快捷方式。在 Quill 和其他 WYSIWYG 文本编辑器中,按下返回键(又名 Enter)总是关闭 block 级元素。因此,在您的编辑器中,您正在经历这样的事情:

<h1>I am pressing enter! H1 will close and the next line will be a new paragraph.</h1>
<p>This is my next line</p>

为了在同一 block 级元素中插入换行符并继续,您必须使用 Shift + Enter 快捷键而不是 Enter。因此,您的编辑器会看到类似这样的内容:

<h1> I am pressing shift + enter! The next line will be part of the same block element<br>
This is my next line</h1>

关于javascript - Quill 格式化所有文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42400171/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com