From d7e17946484aecfb6276ad4920add4aedb5a0d22 Mon Sep 17 00:00:00 2001 From: gwen Date: Thu, 21 May 2026 15:32:25 +0200 Subject: [PATCH] docs(v1.1_11): multi variable definition --- docs/tutorial/multiple.rst | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/docs/tutorial/multiple.rst b/docs/tutorial/multiple.rst index 053265556..bab863ac1 100644 --- a/docs/tutorial/multiple.rst +++ b/docs/tutorial/multiple.rst @@ -179,7 +179,7 @@ It's easy to find out what the next step is: we would now need some kind of a c which would allow us to set not only one domain name but a list of domain names for which the proxy will be disabled. Making this change requires adding one line, just one, to our variable, -the `multi: true` parameter: +have a look at the `multi: true` parameter: .. extinclude:: https://forge.cloud.silique.fr/stove/rougail-tutorials/raw/commit/v1.1_111/firefox/40-no_proxy.yml :language: yaml @@ -211,7 +211,8 @@ the `multi: true` parameter: What difference does it make? - Fist, note that the `no_proxy` variable is still a `domainname` + Fist, note that the `no_proxy` variable is still a `domainname` type. + The type hasn't changed. Now let's launch the Rougail CLI with the `no_proxy` variable containing a list: @@ -283,5 +284,8 @@ Now we have this output: A multi is a multiple variable, that is a variable that can have multiple values. +.. keypoints:: Key points + + We have now some kind of a container facility named `multi`, that can be applied + to a variable simply by setting the `multi: true` parameter. -.. keywords::