Fix escaped asterisk in code block demonstrating wildcards (#78375)

The code block is rendered verbatim. This currently results in `\*` being shown, which is incorrect (i.e., not parsed as a wildcard pattern).
Removing the superfluous `\` fixes the rendering.
This PR fixes all instances of this issue on that page.
pull/78381/head
Tom Janson 2 years ago committed by GitHub
parent b6ec06ab25
commit 9bf5da8f75
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -82,9 +82,9 @@ You can use wildcard patterns with FQDNs or IP addresses, as long as the hosts a
.. code-block:: yaml
192.0.\*
\*.example.com
\*.com
192.0.*
*.example.com
*.com
You can mix wildcard patterns and groups at the same time:

Loading…
Cancel
Save