html 幻灯片中代码块的 pandoc 增量选项
pandoc incremental option on code block in html slideshow
我有一个简单的降价幻灯片,我用 pandoc
转换为 html
$ cat slides.md
% My lovely presentation
# My lovely first slide
- first bullet
- second bullet
- third bullet
```c
for (int i=0;i<10;i++) { ... }
``
$ pandoc -i -t slidy -s slides.md -o slides.html
我希望代码块出现在 第三个项目符号之后,但它从一开始就在那里。可行吗?
您可以将其添加为第四个要点的一部分:
% My lovely presentation
# My lovely first slide
- first bullet
- second bullet
- third bullet
- ```c
for (int i=0;i<10;i++) { ... }
```
我有一个简单的降价幻灯片,我用 pandoc
转换为 html$ cat slides.md
% My lovely presentation
# My lovely first slide
- first bullet
- second bullet
- third bullet
```c
for (int i=0;i<10;i++) { ... }
``
$ pandoc -i -t slidy -s slides.md -o slides.html
我希望代码块出现在 第三个项目符号之后,但它从一开始就在那里。可行吗?
您可以将其添加为第四个要点的一部分:
% My lovely presentation
# My lovely first slide
- first bullet
- second bullet
- third bullet
- ```c
for (int i=0;i<10;i++) { ... }
```