我想使用Pandoc从Markdown创建Beamer幻灯片。我希望所有以#
开头的句子都开始一张新幻灯片,除了一张。我该怎么办?
---
title: Introduction to Markdown.
---
# Introduction to Markdown
Markdown is easy to learn.
This is how you create headings in Markdown.
Code:
```
# Heading Level 1
## Heading Level 2
### Heading Level 3.
```
Output:
# Heading Level 1
## Heading Level 2
### Heading Level 3.
我不希望# Heading Level 1
开始新的幻灯片。有人可以帮帮我吗 ?