Forrest logo
back to context overview

pandoc

List of commands for pandoc:

  • pandoc:ai:b9ee0 convert markdown file to pdf
    $ pandoc input.md -o output.pdf
    try on your machine
    explain this command
  • pandoc:tldr:3aaf0 pandoc: List all supported output formats.
    $ pandoc --list-output-formats
    try on your machine
    explain this command
  • pandoc:tldr:74aff pandoc: Convert file to PDF (the output format is determined by file extension).
    $ pandoc ${input-md} -o ${output-pdf}
    try on your machine
    explain this command
  • pandoc:tldr:8a306 pandoc: List all supported input formats.
    $ pandoc --list-input-formats
    try on your machine
    explain this command
  • pandoc:tldr:9a808 pandoc: Force conversion to use a specific format.
    $ pandoc ${input-docx} --to ${gfm} -o ${output-md}
    try on your machine
    explain this command
  • pandoc:tldr:a8797 pandoc: Convert to a standalone file with the appropriate headers/footers (for LaTeX, HTML, etc.).
    $ pandoc ${input-md} -s -o ${output-tex}
    try on your machine
    explain this command
back to context overview