mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-23 01:42:09 +02:00

* pygmentize: various tweaks - adjust punctuation in main description and first example's description - mention "list" (rather than "show") in the -L examples, to improve memorability - explain what lexers are - clarify which of the parameters are input and output filenames - simplify last example * make -O example more didactic References: - http://pygments.org/docs/cmdline/#options-and-filters - http://pygments.org/docs/formatters/#HtmlFormatter * pygmentize: changes per code review * pygentize: fix typos
27 lines
704 B
Markdown
27 lines
704 B
Markdown
# pygmentize
|
|
|
|
> Python-based syntax highlighter.
|
|
|
|
- Highlight file syntax and print to standard output (language is inferred from the file extension):
|
|
|
|
`pygmentize {{file.py}}`
|
|
|
|
- Explicitly set the language for syntax highlighting:
|
|
|
|
`pygmentize -l {{javascript}} {{input_file}}`
|
|
|
|
- List available lexers (processors for input languages):
|
|
|
|
`pygmentize -L lexers`
|
|
|
|
- Save output to a file in HTML format:
|
|
|
|
`pygmentize -f html -o {{output_file.html}} {{input_file.py}}`
|
|
|
|
- List available output formats:
|
|
|
|
`pygmentize -L formatters`
|
|
|
|
- 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}}`
|