我正在尝试在子项目项目符号之间添加文本;但是,在呈现页面时,内容后面的项目符号显示为代码块。以下是我想要实现的一个例子。
---
title: "My HTML page"
---
- Bullet 1
+ Sub-item 1
My content here
+ Sub-item 2
My content here
这里的问题是sub-item 2
在渲染的html页面中显示为代码块。这有什么解决方案吗?
非常感谢您的帮助。
答案 0 :(得分:1)
在子项目1 之后添加两个空格(=新段落) 然后在下一行开始你的内容:
---
title: "My HTML page"
---
- Bullet 1
+ Sub-item 1
My content here
+ Sub-item 2
My content here
答案 1 :(得分:0)
每当我遇到这个问题时,我都会添加一个完整的回车符,然后键入\ n,并返回另一个完整的回车符,并注意保留适当的标签。
我意识到以下代码将为您留下重复的 Bullet 1 ,但我似乎无法为您找到另一种方式。更具体地说,对于你的例子,这将是:
---
title: "My HTML page"
output: html_document
---
- Bullet 1
- Sub-item 1
\n
My content here
\n
- Bullet 1
- Sub-item 2
\n
My content here
我希望这对你有用。