Trevor DeVore 在https://gist.github.com/trevordevore/5090459上有一个降价库的 GitHub 存储库
由于 pandoc 是一个命令行实用程序,您应该可以通过以下方式调用它:
shell("pandoc -f markdown -t html yourinputfile")
如果你想把它包装成一个函数,应该可以做类似的事情
function markDown2HTML pMarkDown pFromFormat pToFormat
put specialFolderPath("temporary") & "/pandocConvert" & the seconds into tTmpFile
put pMarkdown into URL "file:" & tTempFile
put shell("pandoc -f" && pFromFormat && "-t" && pToFormat" && tTempFile) into tHTML
delete file tTempFile
return tHTML
end markDown2HTML
注意:这是从我的脑海中写出来的,并没有通过实际的 pandoc 安装进行测试。