@@ -50,7 +50,7 @@ Settings can be saved to a json file:
5050 mybet = fsl.BET(in_file='foo.nii', out_file='bar.nii', frac=0.5)
5151 mybet.save_inputs_to_json('bet-settings.json')
5252
53- Once saved, the three inputs set for `mybet ` will be stored in a JSON
53+ Once saved, the three inputs set for `` mybet ` ` will be stored in a JSON
5454file. These settings can also be loaded from a json file:
5555
5656.. testcode ::
@@ -61,7 +61,7 @@ file. These settings can also be loaded from a json file:
6161
6262
6363Loading settings will overwrite previously set inputs by default, unless
64- the `overwrite ` argument is `False `. Conveniently, the settings can be
64+ the `` overwrite `` argument is `` False ` `. Conveniently, the settings can be
6565also read during the interface instantiation:
6666
6767.. testcode ::
@@ -70,15 +70,15 @@ also read during the interface instantiation:
7070 mybet = fsl.BET(from_file='bet-settings.json')
7171
7272If the user provides settings during interface creation, they will take
73- precedence over those loaded using `from_file `:
73+ precedence over those loaded using `` from_file ` `:
7474
7575.. testcode ::
7676
7777 import nipype.interfaces.fsl as fsl
7878 mybet = fsl.BET(from_file='bet-settings.json', frac=0.7)
7979
80- In this case, `mybet.inputs.frac ` will contain the value `0.7 ` regardless
81- the value that could be stored in the `bet-settings.json ` file.
80+ In this case, `` mybet.inputs.frac `` will contain the value `` 0.7 ` ` regardless
81+ the value that could be stored in the `` bet-settings.json ` ` file.
8282
8383
8484Getting Help
0 commit comments