从 html 为站点创建 md 文件:为什么它会将 <br/> 转换为 \?

Create md files for site from html: Why does it convert <br/> to \?

我使用 pandoc 将旧的 html 文件转换为 md,随后我将其用于 Maven 站点,在那里它们被编译为 html.

旧html文件中的标签<br/>在markdown中被转换为\,在html文件中变成\

在markdown中用反斜杠分隔行有什么意义吗? maven-site-plugin 不理解它们吗?它们是某种降价方言吗?

br 被转换为转义换行符,即反斜杠后跟换行符。你可以告诉 pandoc 不要那样做,即禁用 that extension:

$ pandoc -f html -t markdown-escaped_line_breaks input.html