如何使用 reveal.js 配置 markdown?

How to configure markdown with reveal.js?

我想将 reveal.js 与 markdown 结合使用。我关注了 full set up 安装指南

  1. 安装node.js
  2. 克隆 reveal.js 存储库
  3. 移动到 reveal.js 文件夹并安装依赖项
  4. 运行 npm start 在 reveal.js 文件夹中

然后我修改了 index.html 页面以在 the documentation

之后添加降价
<section data-markdown>
<textarea data-template>
## slide 1 
please add me another slide

---
## slide 2
I _need_ it 

---
## slide 3
</textarea>
</section>

但是降价并没有完全发挥作用:

一切都在同一张幻灯片上,第二行应该是一个段落。 我该怎么办?

reveal.js@4.0.2

我认为您需要指定数据分隔符,在示例中是“---”

<section data-markdown data-separator="---">

:)

并考虑文档中的内容

Note that this is sensitive to indentation (avoid mixing tabs and spaces) and line breaks (avoid consecutive breaks).