diff options
-rw-r--r-- | docs/src/cmdline.txt | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/docs/src/cmdline.txt b/docs/src/cmdline.txt index ce14a3fd..a48a5c27 100644 --- a/docs/src/cmdline.txt +++ b/docs/src/cmdline.txt @@ -34,6 +34,11 @@ The above command could therefore also be given as:: $ pygmentize -o test.html test.py +To create a full HTML document, including line numbers and stylesheet (using the +"emacs" style), highlighting the Python file ``test.py`` to ``test.html``:: + + $ pygmentize -O full,style=emacs -o test.html test.py + Options and filters ------------------- @@ -117,15 +122,6 @@ will print the help for the HTML formatter, while :: will print the help for the Python lexer, etc. -Examples --------- - -Create a full HTML document, including line numbers and stylesheet (using the -"emacs" style), highlighting the Python file ``setup.py`` to ``setup.html``:: - - $ pygmentize -O full,style=emacs -o setup.html setup.py - - A note on encodings ------------------- |