我想使用 Pandoc 从 Markdown 创建一个 Beamer 幻灯片。我希望所有以 a 开头的句子都#开始一张新幻灯片,除了一个。我怎样才能做到这一点?
---
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开始一张新幻灯片。有人可以帮帮我吗 ?