@@ -18,7 +18,7 @@ Features
1818* Parseable output: Jump to error location in your editor.
1919
2020* Small: Just one Python file, requires only stdlib. You can use just
21- the pycodestyle.py file for this purpose.
21+ the `` pycodestyle.py `` file for this purpose.
2222
2323* Comes with a comprehensive test suite.
2424
@@ -55,7 +55,7 @@ the ``pycodestyle`` library:
5555Installation
5656------------
5757
58- You can install, upgrade, uninstall pycodestyle.py with these commands::
58+ You can install, upgrade, uninstall `` pycodestyle.py `` with these commands::
5959
6060 $ pip install pycodestyle
6161 $ pip install --upgrade pycodestyle
@@ -77,7 +77,7 @@ Example usage and output
7777 optparse.py:472:29: E221 multiple spaces before operator
7878 optparse.py:544:21: W601 .has_key() is deprecated, use 'in'
7979
80- You can also make pycodestyle.py show the source code for each error, and
80+ You can also make `` pycodestyle.py `` show the source code for each error, and
8181even the relevant text from PEP 8::
8282
8383 $ pycodestyle --show-source --show-pep8 testsuite/E40.py
@@ -106,8 +106,8 @@ Or you can display how often each error was found::
106106 612 W601 .has_key() is deprecated, use 'in'
107107 1188 W602 deprecated form of raising exception
108108
109- You can also make pycodestyle.py show the error text in different formats by
110- using --format having options default/pylint/custom::
109+ You can also make `` pycodestyle.py `` show the error text in different formats by
110+ using `` --format `` having options default/pylint/custom::
111111
112112 $ pycodestyle testsuite/E40.py --format=default
113113 testsuite/E40.py:2:10: E401 multiple imports on one line
0 commit comments