====== Pandoc ====== Notes sur l'utilisation de [[https://pandoc.org|Pandoc]], un convertisseur de documents depuis ou vers de [[https://pandoc.org/index.html|nombreux formats]] ===== Markdow vers HTML ===== pandoc -f markdown -t html source.md -o test1.html ===== DOCX vers Markdown ===== pandoc -f docx -t gfm source.docx -o destination.md gfm correspondant au "GitHub-Flavored Markdown". Peut ĂȘtre remplacĂ© par "markdown". ===== HTLM vers Markdown ===== pandoc -f html -t markdown_mdd source.html -o destination.md