回顧你的學習旅程
讓我們一起回顧所學的內容
Antigravity + Pandoc 的基礎概念
安裝設定、基本轉換、批次處理
格式控制、AI 輔助處理
專案實作、效能優化
問題排解、持續學習
學會閱讀錯誤訊息、系統性排查問題、向 AI 有效提問
格式轉換
文件撰寫
腳本自動化
元資料設定
有效溝通
除錯能力
pandoc input.md -o output.docx
pandoc input.md -f markdown -t html -o output.html
pandoc input.md -o output.docx --reference-doc=template.docx
pandoc input.md -o output.html --standalone --self-contained
Get-ChildItem *.md | ForEach-Object {
$output = $_.BaseName + ".docx"
pandoc $_.FullName -o $output
}
Get-ChildItem *.md | ForEach-Object -Parallel {
pandoc $_.FullName -o ($_.BaseName + ".docx")
} -ThrottleLimit 4
「請幫我整理這份文件的結構,加上適當的標題和段落分隔」
「請幫我生成這份文件的重點摘要,不超過 200 字」
「請幫我校正這份文件的錯字,並潤飾語句使其更通順」
「請幫我寫一個 PowerShell 腳本,可以批次轉換 .md 到 .docx」
try {
pandoc $input -o $output
} catch {
Write-Host "錯誤: $_" -ForegroundColor Red
}
does not exist → 檢查檔案路徑YAML header → 檢查 YAML 格式byte sequence → 轉換為 UTF-8pdflatex → 安裝 LaTeXPandoc 的主要功能是什麼?
下一步:在 Unit 02 學習更多進階學習資源