Forrest logo
back to context overview

pygmentize

List of commands for pygmentize:

  • pygmentize:tldr:02e75 pygmentize: Save output to a file in HTML format.
    $ pygmentize -f html -o ${output_file-html} ${input_file-py}
    try on your machine
    explain this command
  • pygmentize:tldr:09689 pygmentize: Highlight file syntax and print to standard output (language is inferred from the file extension).
    $ pygmentize ${file-py}
    try on your machine
    explain this command
  • pygmentize:tldr:19932 pygmentize: List available output formats.
    $ pygmentize -L formatters
    try on your machine
    explain this command
  • pygmentize:tldr:72ea3 pygmentize: List available lexers (processors for input languages).
    $ pygmentize -L lexers
    try on your machine
    explain this command
  • pygmentize:tldr:9c0a0 pygmentize: Explicitly set the language for syntax highlighting.
    $ pygmentize -l ${javascript} ${input_file}
    try on your machine
    explain this command
  • pygmentize:tldr:d2aee pygmentize: Output an HTML file, with additional formatter options (full page, with line numbers).
    $ pygmentize -f html -O "full,linenos=True" -o ${output_file-html} ${input_file}
    try on your machine
    explain this command
back to context overview