@@ -25,8 +25,8 @@ The ``--format`` option for the output format. Supported formats are ``txt`` (de
2525
2626NOTE: the output for the following formats are generated in accordance with schemas
2727
28- * ``checkstyle` follows the common `"checkstyle" XML schema </doc/schemas/fix/checkstyle.xsd>`_
29- * ``json` follows the `own JSON schema </doc/schemas/fix/schema.json>`_
28+ * ``checkstyle`` follows the common `"checkstyle" XML schema </doc/schemas/fix/checkstyle.xsd>`_
29+ * ``json`` follows the `own JSON schema </doc/schemas/fix/schema.json>`_
3030* ``junit`` follows the `JUnit XML schema from Jenkins </doc/schemas/fix/junit-10.xsd>`_
3131* ``xml`` follows the `own XML schema </doc/schemas/fix/xml.xsd>`_
3232
@@ -36,9 +36,9 @@ The ``--verbose`` option will show the applied rules. When using the ``txt`` for
3636
3737NOTE: if there is an error like "errors reported during linting after fixing", you can use this to be even more verbose for debugging purpose
3838
39- * `-v `: verbose
40- * `-vv`: very verbose
41- * `-vvv`: debug
39+ * ``-v` `: verbose
40+ * `` -vv` `: very verbose
41+ * `` -vvv` `: debug
4242
4343The ``--rules`` option limits the rules to apply to the
4444project:
@@ -81,7 +81,7 @@ The ``--diff`` flag can be used to let the fixer output all the changes it makes
8181The ``--diff-format`` option allows to specify in which format the fixer should output the changes it makes:
8282
8383* ``udiff``: unified diff format;
84- * ``sbd``: Sebastianbergmann/diff format (default when using `--diff` without specifying `diff-format`).
84+ * ``sbd``: Sebastianbergmann/diff format (default when using `` --diff`` without specifying `` diff-format` `).
8585
8686The ``--allow-risky`` option (pass ``yes`` or ``no``) allows you to set whether risky rules may run. Default value is taken from config file.
8787A rule is considered risky if it could change code behaviour. By default no risky rules are run.
@@ -151,8 +151,8 @@ Note: You need to pass the config to the ``fix`` command, in order to make it wo
151151
152152 $ php php-cs-fixer.phar list-files --config=.php-cs-fixer.dist.php | xargs -n 10 -P 8 php php-cs-fixer.phar fix --config=.php-cs-fixer.dist.php --path-mode intersection -v
153153
154- * `-n ` defines how many files a single subprocess process
155- * `-P ` defines how many subprocesses the shell is allowed to spawn for parallel processing (usually similar to the number of CPUs your system has)
154+ * ``-n` ` defines how many files a single subprocess process
155+ * ``-P` ` defines how many subprocesses the shell is allowed to spawn for parallel processing (usually similar to the number of CPUs your system has)
156156
157157
158158Rule descriptions
0 commit comments