Update cheatsheets

This commit is contained in:
ivuorinen
2024-02-21 11:19:49 +00:00
parent 4e88a1b42f
commit 3d653cc7e6
4803 changed files with 127002 additions and 0 deletions

33
pygmentize Normal file
View File

@@ -0,0 +1,33 @@
---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# 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}}`