pandoc 으로 파일 컨버트하기

업데이트: Link

Pandoc 사용하여 파일 컨버트

Homepage: https://pandoc.org/ Manual: https://pandoc.org/MANUAL.html

install pandoc

웹사이트의 download 페이지에서 다운로드 받아 설치하거나 mac 사용자라면 brew 를 통해 설치할 수 있다.

brew install pandoc

convert file

하나의 파일만 포멧한다면 아래의 형식으로 terminal 창에 명령을 입력해 컨버팅할 수 있다.

# excample: pandoc {original_file_path} -f {original_file_format} -t {output_file_format} -s -o {output_file_path}
pandoc ./origin.md -f markdown -t docx -s -o converted.docx

사용 가능한 input file formats

Specify input format. FORMAT can be:

사용 가능한 output file formats

Specify output format. FORMAT can be:

convert directory

sh 파일을 만들어서 루프 실행

find ./ -iname "*.md" -type f -exec sh -c 'pandoc "${0}" -f markdown -t docx -s -o "${0%.md}.docx"' {} \;

댓글남기기