1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 17:02:08 +02:00
tldr/pages/common/pygmentize.md
Lena d427f333b2
pages/*: add backticks around I/O streams (#10436)
* as suggested in #10428
* standard input  => `stdin`
* standard output => `stdout`
* standard error  => `stderr`

Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
2023-08-09 10:59:02 +05:30

28 lines
755 B
Markdown

# pygmentize
> Python-based syntax highlighter.
> More information: <https://pygments.org/docs/cmdline/>.
- Highlight file syntax and print to `stdout` (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}}`