我正在添加Markdown支持我的CMS编辑器。

写Markdown内容时,我如何创建两个空行?

我一直在努力,但总是只有一条线。


当前回答

如果Markdown编译器支持HTML,可以在Markdown源代码中添加<br/><br/>。

其他回答

引号内加空格,后面加两个空格。如需更多行,请重复以下步骤:

text1 text1
`(space)`(space)(space)
`(space)`(space)(space)
text2 text2

它看起来不错Markdown来源:

text1 text1
` `  
` `  
text2 text2

你可以用这个来完美地完成:

texttextexttexttext
&nbsp;
&nbsp;
texttexttexttexttext

您可以重复使用连续空格(U+00a0)和两个空格(U+0020×2)以及换行符(U+000a)的序列来实现这一点。根据您的用例,需要两次或两次以上。

使用(这里不是降价解释,而是)实际的空白字符(理论上是可复制粘贴的):

Preceding
   
   
   
Following.

如果你正在使用markdown-it或PythonMarkdown这样的库,这也可以通过在渲染前将两个换行符(在Regex /\n\n$/gm中)替换为一个换行符和一个不可见字符(\n)来解决。注意\n后面的字符是Alt+0160或不可见字符。

例如,使用markdown-it(尽管它也适用于任何其他库)作为输入:

1

2


3


4



5

使用md.render(string.data。替换(/\n\n$/gm, "\n "))将得到:

我只知道下面的选项。如果能把它们都列一个清单,并给出不同之处,那就太好了

# RAW
## Creates 2 Lines that CAN be selected as text
## -------------------------------------------------
### The non-breaking space ASCII character
&nbsp;
&nbsp;

### HTML <(br)/> tag
<br />
<br />

## Creates 2 Lines that CANNOT be selected as text
## -------------------------------------------------
### HTML Entity &NewLine;
&NewLine;
&NewLine;

### Backticks with a space inside followed by two spaces
`(space)`(space)(space)
`(space)`(space)(space)
#### sample:
` `  
` `

# End