我如何防止 Pandoc 使“# of People”成为 header

How do I keep Pandoc from making "# of People" a header

我有一个 Pandoc / markdown 网格 table,我希望其中一个单元格包含内容“# of People”。我试过这个:

+-------------------+
| **Cell Content:** |
+===================+
| # of People       |
+-------------------+

不幸的是,它把那个转换成这个 html:

<td align="left"><h1 id="of-People">of People</h1></td>

如果我将“”放在#(即 People 的“#”)周围,它不会将其视为 header,但它会保留“”。

有什么方法可以让 Pandoc 不将 # 处理为 header 级别标记,而不必添加额外的可见字符?

使用反斜杠转义#:

\# of People