diff options
author | SphinxKnight <SphinxKnight@users.noreply.github.com> | 2021-11-15 19:39:35 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-15 19:39:35 +0100 |
commit | 6f6e297fbfa7867b1f42c4245df20f4282b3b083 (patch) | |
tree | e602e617243ed4427e45c30554939818bfba8d6e /files/fr/glossary/percent-encoding/index.html | |
parent | 34d315396ca29d7ef51ecc27eeeeeb275e9b0ba9 (diff) | |
download | translated-content-6f6e297fbfa7867b1f42c4245df20f4282b3b083.tar.gz translated-content-6f6e297fbfa7867b1f42c4245df20f4282b3b083.tar.bz2 translated-content-6f6e297fbfa7867b1f42c4245df20f4282b3b083.zip |
Prepare Glossary section for Markdown conversion (#2971)
* Remove seoSummary and summary classes
* Fix hidden blocks / code samples
* Remove span cruft
* Remove <font> and <style .. font..>
* Remove notranslate
* Remove id other than in headings
* Fix pre blocks and remove style
* Fix other report one offs and remove absolute urls
* Remove external classes
* Fixing images url
Diffstat (limited to 'files/fr/glossary/percent-encoding/index.html')
-rw-r--r-- | files/fr/glossary/percent-encoding/index.html | 82 |
1 files changed, 61 insertions, 21 deletions
diff --git a/files/fr/glossary/percent-encoding/index.html b/files/fr/glossary/percent-encoding/index.html index 1f8313e973..a22a177cf2 100644 --- a/files/fr/glossary/percent-encoding/index.html +++ b/files/fr/glossary/percent-encoding/index.html @@ -12,50 +12,90 @@ original_slug: Glossaire/percent-encoding <p>Les caractères spéciaux nécessitant cet encodage sont : <code>':'</code>, <code>'/'</code>, <code>'?'</code>, <code>'#'</code>, <code>'['</code>, <code>']'</code>, <code>'@'</code>, <code>'!'</code>, <code>'$'</code>, <code>'&'</code>, <code>"'"</code>, <code>'('</code>, <code>')'</code>, <code>'*'</code>, <code>'+'</code>, <code>','</code>, <code>';'</code>, <code>'='</code>, et <code>'%'</code> lui-même. Les autres caractères n'ont pas besoin d'être encodés, bien qu'ils puissent l'être.</p> -<table class="standard-table"> +<table> + <thead> + <th>Caractère</th> + <th>Encodage</th> + </thead> <tbody> <tr> <td><code>':'</code></td> - <td><code>'/'</code></td> - <td><code>'?'</code></td> - <td><code>'#'</code></td> - <td><code>'['</code></td> - <td><code>']'</code></td> - <td><code>'@'</code></td> - <td><code>'!'</code></td> - <td><code>'$'</code></td> - <td><code>'&'</code></td> - <td><code>"'"</code></td> - <td><code>'('</code></td> - <td><code>')'</code></td> - <td><code>'*'</code></td> - <td><code>'+'</code></td> - <td><code>','</code></td> - <td><code>';'</code></td> - <td><code>'='</code></td> - <td><code>'%'</code></td> - <td><code>' '</code></td> + <td><code>%3A</code></td> </tr> <tr> - <td><code>%3A</code></td> + <td><code>'/'</code></td> <td><code>%2F</code></td> + </tr> + <tr> + <td><code>'?'</code></td> <td><code>%3F</code></td> + </tr> + <tr> + <td><code>'#'</code></td> <td><code>%23</code></td> + </tr> + <tr> + <td><code>'['</code></td> <td><code>%5B</code></td> + </tr> + <tr> + <td><code>']'</code></td> <td><code>%5D</code></td> + </tr> + <tr> + <td><code>'@'</code></td> <td><code>%40</code></td> + </tr> + <tr> + <td><code>'!'</code></td> <td><code>%21</code></td> + </tr> + <tr> + <td><code>'$'</code></td> <td><code>%24</code></td> + </tr> + <tr> + <td><code>'&'</code></td> <td><code>%26</code></td> + </tr> + <tr> + <td><code>"'"</code></td> <td><code>%27</code></td> + </tr> + <tr> + <td><code>'('</code></td> <td><code>%28</code></td> + </tr> + <tr> + <td><code>')'</code></td> <td><code>%29</code></td> + </tr> + <tr> + <td><code>'*'</code></td> <td><code>%2A</code></td> + </tr> + <tr> + <td><code>'+'</code></td> <td><code>%2B</code></td> + </tr> + <tr> + <td><code>','</code></td> <td><code>%2C</code></td> + </tr> + <tr> + <td><code>';'</code></td> <td><code>%3B</code></td> + </tr> + <tr> + <td><code>'='</code></td> <td><code>%3D</code></td> + </tr> + <tr> + <td><code>'%'</code></td> <td><code>%25</code></td> + </tr> + <tr> + <td><code>' '</code></td> <td><code>%20</code> ou <code>+</code></td> </tr> </tbody> |