如何在 TinyMCE 的列表项中添加段落?

How to add paragraphs in an item of a list in TinyMCE?

我想在列表的同一项目中添加一些段落。喜欢:

  1. Text text text

    Text in a new paragraph

  2. Text text text

在 TinyMCE 中有没有办法做到这一点?

  1. 点击编辑器中的 OL。
  2. 添加第一项、添加第二项等
  3. 返回到您想要添加段落的项目,然后按回车键创建一个新行。
  4. Tab 键两次。
  5. 将制表符退格(两次),这将删除新的 li。
  6. 再次返回您想要该段落的行,然后按回车键创建另一个行。
  7. Tab 键两次。
  8. 退格两次。

奇怪的是,在所见即所得中做两次就可以了。

以下是这些操作步骤:

上面的示例将在父 li 中放置一个 ol/ul,产生如下内容:

<ol>
<li>OneHad to do it twice.
<ol>
<li style="list-style-type: none;">&nbsp;</li>
</ol>
</li>
<li>TwoAgain, had to do it twice.
<ol>
<li style="list-style-type: none;">&nbsp;</li>
</ol>
</li>
<li>ThreeOdd, but it works :)
<ol>
<li style="list-style-type: none;">&nbsp;</li>
</ol>
</li>
</ol>

从左上角输入列表 select paragraph 时。然后按 ctrl+enterctrl+return 进入下一行。

所以会这样。 例如,我正在输入一个列表:

  1. this is the first item of the list.
  2. this is the second item of the list (select paragraph now) and this (press ctrl+return) may contain more than one line
  3. this is the third line

因此这将呈现:

  1. this is the first item of the list.
  2. this is the second item of the list and this

    may contain more than one line.

  3. this is the third line

我找到了一种在列表中创建段落的简单方法。

  1. 用户 Shift + enter 在列表项中创建换行符。
  2. Select 文本和 select Paragraph。 TinyMCE 将 <br> 转换为段落。