pandoc 有没有什么办法可以在纯文本输出中打印编号部分?

pandoc 有没有什么办法可以在纯文本输出中打印编号部分?

这是我的 LaTeX 输入:

\documentclass{article}
\begin{document}
\section{foo}
\section{bar}
\end{document}

我使用 pandoc 1.11.1 运行以下命令:

pandoc -o test.txt -t plain -N test.tex

以下是我得到的结果:

foo
===

bar
===

有没有办法让纯文本章节和小节自动编号?

相关内容