Forrest logo
tool overview
On this page you find all important commands for the CLI tool pygmentize. If the command you are looking for is missing please ask our AI.

pygmentize

Pygmentize is a command line tool that is used for syntax highlighting in various programming languages. It is a part of the Pygments library, which is a powerful syntax highlighting engine written in Python.

The primary function of pygmentize is to take source code as input and produce colorful and formatted output with syntax highlighting. It supports a wide range of programming languages and file formats, making it a versatile tool for developers and users.

Pygmentize offers several output formats, including HTML, LaTeX, and ANSI terminal escape sequences. This allows users to generate syntax-highlighted code both for documentation purposes and for interactive viewing in terminals.

The tool supports various customization options such as changing the style, color schemes, and line numbering. This enables users to adapt the output to match their preferences or integrate it seamlessly into different types of projects.

Pygmentize provides a command line interface that makes it easy to incorporate syntax highlighting into scripts or utilize it as part of a larger workflow. The tool accepts input from files or standard input, which allows for convenient integration with other command line tools.

A notable feature of pygmentize is its support for over 500 programming languages and file formats, making it suitable for highlighting code in both popular and less common programming languages.

The community surrounding Pygments continuously maintains and updates the tool, ensuring compatibility with the latest language versions and adding support for emerging languages.

Besides being a standalone command line tool, pygmentize is widely integrated with various text editors, content management systems, and other software applications. Many programming environments leverage pygmentize to provide syntax highlighting capabilities to their users.

Pygmentize is an open-source tool, released under the BSD license, which promotes its widespread adoption and allows users to contribute to its development and improvement.

Overall, pygmentize is a powerful command line tool that provides easy-to-use syntax highlighting functionalities, making it a popular choice among developers and users who require code formatting and readability in their projects.

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
tool overview