1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/common/pygmentize.md

28 lines
622 B
Markdown
Raw Normal View History

2017-04-17 20:03:00 +02:00
# pygmentize
> Python based syntax highlighter.
2017-04-17 20:03:00 +02:00
- Highlight file syntax and print to standard output. Language is inferred from the file extension:
2017-04-17 20:03:00 +02:00
`pygmentize {{file.py}}`
2017-04-17 20:03:00 +02:00
- Highlight syntax for a given language:
2017-04-17 20:03:00 +02:00
`pygmentize -l {{javascript}} {{javascript_file}}`
2017-04-17 20:03:00 +02:00
- Show avaliable lexers:
`pygmentize -L lexers`
2017-04-24 18:23:05 +02:00
- Save output to a file in HTML format:
2017-04-17 20:03:00 +02:00
`pygmentize -f html -o {{file.html}} {{file.py}}`
2017-04-17 20:03:00 +02:00
- Show avaliable output formats:
`pygmentize -L formatters`
- Output to HTML file with line numbers, specifying a given language:
2017-04-17 20:03:00 +02:00
`pygmentize -f html -O linenos=1 -l {{language}} -o {{file.html}} {{file}}`