Created
May 30, 2019 08:51
-
-
Save jdhao/2d205bafa505b58db5855729fdec386a to your computer and use it in GitHub Desktop.
Markdown to docx build system for Sublime Text 3
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
Show hidden characters
{ | |
"shell_cmd": "pandoc \"${file}\" -o \"${file_path}/${file_base_name}.docx\" ", | |
// "path": "C:/Users/east/AppData/Local/Pandoc/;%PATH%", | |
"file_regex": "^(..[^:]*):([0-9]+):?([0-9]+)?:? (.*)$", | |
"working_dir": "${file_path}", | |
"selector": "text.html.markdown", | |
"variants": | |
[ | |
{ | |
"name": "Build and View", | |
"shell_cmd": "pandoc \"${file}\" -o \"${file_path}/${file_base_name}.docx\" && WINWORD \"${file_path}/${file_base_name}.docx\" ", | |
// "path": "C:/Users/east/AppData/Local/Pandoc/;%PATH%", | |
// "shell_cmd": "start \"$file_base_name\" call $file_base_name" | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment