@@ -284,7 +284,7 @@ Depending on the parse method used (see :class:`.ArgumentParser`) and how the
284284parser was built, some of the options above might not apply. Parsing of
285285environment variables must be explicitly enabled, except if using
286286:py:meth: `.ArgumentParser.parse_env `. If the parser does not have an
287- `action="config" ` argument, then there is no parsing of a full config
287+ `` action="config" ` ` argument, then there is no parsing of a full config
288288environment variable or a way to provide a config file from command line.
289289
290290
@@ -755,9 +755,9 @@ If you import ``from jsonargparse import set_parsing_settings`` and then run
755755``set_parsing_settings(config_read_mode_fsspec_enabled=True) ``, the following
756756functions and classes will also support loading from URLs:
757757:py:meth: `.ArgumentParser.parse_path `, :py:meth: `.ArgumentParser.get_defaults `
758- (``default_config_files `` argument), `action="config" `,
758+ (``default_config_files `` argument), `` action="config" ` `,
759759:class: `.ActionJsonSchema `, :class: `.ActionJsonnet ` and :class: `.ActionParser `.
760- This means that a tool that can receive a config file via `action="config" ` is
760+ This means that a tool that can receive a config file via `` action="config" ` ` is
761761able to get the content from a URL, thus something like the following would
762762work:
763763
@@ -1338,7 +1338,7 @@ string respectively.
13381338Serialization
13391339-------------
13401340
1341- Parsers that have an `action="config" ` argument also include a
1341+ Parsers that have an `` action="config" ` ` argument also include a
13421342``--print_config `` option. This is useful particularly for command line tools
13431343with a large set of options to create an initial config file including all
13441344default values. If the `ruamel.yaml <https://pypi.org/project/ruamel.yaml >`__
@@ -2550,7 +2550,7 @@ There is also the :py:meth:`.ArgumentParser.parse_env` function to only parse
25502550environment variables, which might be useful for some use cases in which there
25512551is no command line call involved.
25522552
2553- If a parser includes an `action="config" ` argument, then the environment
2553+ If a parser includes an `` action="config" ` ` argument, then the environment
25542554variable for this config file will be parsed before all the other environment
25552555variables.
25562556
@@ -2758,7 +2758,7 @@ following:
27582758When using the :class: `.ActionParser ` class, the value of the node in a config
27592759file can be either the complex node itself, or the path to a file which will be
27602760loaded and parsed with the corresponding inner parser. Naturally using
2761- `action="config" ` to parse a complete config file will parse the inner
2761+ `` action="config" ` ` to parse a complete config file will parse the inner
27622762nodes correctly.
27632763
27642764Note that when adding ``inner_parser `` a title was given. In the help, the added
0 commit comments