次のコマンドを使用して、Windows CMD で pandoc を正常に実行できます。
pandoc test.md -o test.html
それからRacketでも同じことをしたいので、試しました:
(subprocess #f #f #f "pandoc" "test.md -o test.html")
と:
(shell-execute "pandoc" "" "test.md -o test.html" (current-directory) 'sw_showdefault)
.html
しかし、それらのどれも期待したファイルをくれませんでした。
これを行う正しい方法は何ですか?ありがとうございました。