pandoc:从 markdown 转换时添加 html 事件,例如 onload
pandoc: add html events such as onload when converting from markdown
从 Markdown 转换为 HTML 时,我想在生成的 html 页面中添加自定义 onload
事件处理程序,如下所示:
<body onload="myOnLoad();">
pandoc
这可能吗?怎么样?
有两种可能:
- 使用自定义模板,查看 pandoc manual section on templates,或
- 写一个简短的 JavaScript 脚本,它使用
addEventListener
method instead, and add the script to the document, e.g. via -H
.
从 Markdown 转换为 HTML 时,我想在生成的 html 页面中添加自定义 onload
事件处理程序,如下所示:
<body onload="myOnLoad();">
pandoc
这可能吗?怎么样?
有两种可能:
- 使用自定义模板,查看 pandoc manual section on templates,或
- 写一个简短的 JavaScript 脚本,它使用
addEventListener
method instead, and add the script to the document, e.g. via-H
.