Created
October 28, 2014 09:53
-
-
Save oguna/ed5f607d10ee21b4dc50 to your computer and use it in GitHub Desktop.
PandocでMarkdownをHTMLに変換するバッチファイル
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| REM Pandocを使ってMarkdown(.md)をHTML(.html)に変換するバッチ | |
| REM -f : 変換元フォーマット | |
| REM -t : 変換先フォーマット | |
| REM -o : 出力先ファイル | |
| REM -c : CSSファイル | |
| pandoc -f markdown -t html5 -o index.html -c css/github.css index.md | |
| REM エラーなら停止する | |
| if %ERRORLEVEL% NEQ 0 (pause) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment