[TOC]
簡介
pandoc
工具常用於轉換文件格式,支援Markdown
、HTML
、LaTeX
、Word docx
、PDF
等文件格式的轉換。
安裝
最簡單的方法就是從官網下載軟體直接安裝。點選下載 。
還有其他的安裝方法如下。
Windows
使用 Chocolatey
安裝:
choco install pandoc
MacOS
使用 Homebrew
安裝:
brew install pandoc
使用
常用文件格式轉換
pandoc -o
pandoc -o output.html input.txt
顯式指定輸入\輸出格式
pandoc -f
pandoc -t
, 如將hello.txt
從html
轉換成markdown
格式
pandoc -f html -t markdown hello.txt
更多的使用方法請參考 官方手冊 。
本作品採用《CC 協議》,轉載必須註明作者和本文連結