如何在Markdown演示中添加新行?

我的意思是,像\newline in TeX。


当前回答

您还可以将其包装在一个隔离的代码块中。这种方法的优点是不需要为每一行添加额外的内容。 但是,内容应该显示为带有背景的高亮块,因此它可能不适用于所有用例。

Lorem inmissa qui propinquas doleas
Accipe fuerat accipiam

其他回答

这取决于您使用的是哪种markdown解析器。例如,在showdownjs中有一个选项{simplelinbreaks: true},它为以下md输入提供了相应的html:

a line
wrapped in two
<p>a line<br>
wrapped in two</p>

MarkDown文件以三种方式打破一行

<br />标签使用

paragraph First Line <br /> Second Line

使用\

First Line sentence \
Second Line sentence 

空格键按两次使用

First Line sentence␠␠
Second Line sentence

使用<br />标签的段落。

多个句子在使用\或两次按空格键,然后回车,写一个新的句子。

什么对我有用

\
&nbsp;
\
&nbsp;

换行符(\n)可用于以编程方式在markdown文件中添加换行符。例如,在python中可以这样做:

with open("file_name.md", "w") as file:
   file.write("Some text")
   file.write("\n")
   file.write("Some other text")

你可以使用&nbsp;在R markdown中创建一个新的空行。

例如,在你的.Rmd文件中:

I want 3 new lines: 

&nbsp;
&nbsp;
&nbsp;

End of file.