diff options
author | SphinxKnight <SphinxKnight@users.noreply.github.com> | 2021-11-07 12:17:45 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-07 12:17:45 +0100 |
commit | c9860f376b22c43b49e71be664763bf6a9e27318 (patch) | |
tree | 294b6befcf562226f6b8cad6e39e2e7f34950df4 | |
parent | 88dda3c00eefc18a29447e99ebd3177925602b52 (diff) | |
download | translated-content-c9860f376b22c43b49e71be664763bf6a9e27318.tar.gz translated-content-c9860f376b22c43b49e71be664763bf6a9e27318.tar.bz2 translated-content-c9860f376b22c43b49e71be664763bf6a9e27318.zip |
Fix live sample errors for HTML docs (#2995)
-rw-r--r-- | files/fr/web/html/element/b/index.md | 2 | ||||
-rw-r--r-- | files/fr/web/html/element/li/index.md | 36 | ||||
-rw-r--r-- | files/fr/web/html/element/menu/index.md | 6 | ||||
-rw-r--r-- | files/fr/web/html/element/style/index.md | 2 | ||||
-rw-r--r-- | files/fr/web/html/element/textarea/index.md | 2 | ||||
-rw-r--r-- | files/fr/web/html/element/ul/index.md | 4 |
6 files changed, 29 insertions, 23 deletions
diff --git a/files/fr/web/html/element/b/index.md b/files/fr/web/html/element/b/index.md index e2f5961e9e..9e05b5a01b 100644 --- a/files/fr/web/html/element/b/index.md +++ b/files/fr/web/html/element/b/index.md @@ -111,7 +111,7 @@ l'élément <b>, sûrement en gras. ### Résultat -{{EmbedLiveSample("example")}} +{{EmbedLiveSample("Exemple")}} ## Spécifications diff --git a/files/fr/web/html/element/li/index.md b/files/fr/web/html/element/li/index.md index 7c5efa1d93..b05e388da5 100644 --- a/files/fr/web/html/element/li/index.md +++ b/files/fr/web/html/element/li/index.md @@ -46,11 +46,13 @@ Cet élément inclut les [attributs universels](/fr/docs/Web/HTML/Attributs_univ #### HTML - <ol> - <li>premier article</li> - <li>second article</li> - <li>troisième article</li> - </ol> +```html +<ol> + <li>premier article</li> + <li>second article</li> + <li>troisième article</li> +</ol> +``` #### Résultat @@ -60,11 +62,13 @@ Cet élément inclut les [attributs universels](/fr/docs/Web/HTML/Attributs_univ #### HTML - <ol type="I"> - <li value="3">troisième article</li> - <li>quatrième article</li> - <li>cinquième article</li> - </ol> +```html +<ol type="I"> + <li value="3">troisième article</li> + <li>quatrième article</li> + <li>cinquième article</li> +</ol> +``` #### Résultat @@ -74,11 +78,13 @@ Cet élément inclut les [attributs universels](/fr/docs/Web/HTML/Attributs_univ #### HTML - <ul> - <li>premier article</li> - <li>second article</li> - <li>troisième article</li> - </ul> +```html +<ul> + <li>premier article</li> + <li>second article</li> + <li>troisième article</li> +</ul> +``` #### Résultat diff --git a/files/fr/web/html/element/menu/index.md b/files/fr/web/html/element/menu/index.md index 4a21fa153d..1d1e34336d 100644 --- a/files/fr/web/html/element/menu/index.md +++ b/files/fr/web/html/element/menu/index.md @@ -34,7 +34,7 @@ Comme pour tous les autres éléments, on peut utiliser [les attributs universel ## Exemples -### Menu contextuel{{Deprecated_inline}} +### Menu contextuel {{Deprecated_header}} @@ -92,7 +92,7 @@ div { {{EmbedLiveSample('Bouton_de_menu', '100%', '50')}} -### Barre d’outils {{experimental_inline}} +### Barre d'outils > **Attention :** Les menus sous forme de barres d'outils n'ont pas encore été implémentés dans les navigateurs. @@ -122,7 +122,7 @@ div { #### Résultat -{{EmbedLiveSample("Barre_d’outils", '100%', '100')}} +{{EmbedLiveSample("Barre_doutils", '100%', '100')}} ## Résumé technique diff --git a/files/fr/web/html/element/style/index.md b/files/fr/web/html/element/style/index.md index 9f510d96d5..2cc4ed33b9 100644 --- a/files/fr/web/html/element/style/index.md +++ b/files/fr/web/html/element/style/index.md @@ -97,7 +97,7 @@ Dans cet exemple, on utilise deux éléments `<style>`, on peut voir comment les #### Résultat -{{EmbedLiveSample('Utiliser_plusieurs_éléments_<style>', '100%', '60')}} +{{EmbedLiveSample('Utiliser_plusieurs_éléments_style', '100%', '60')}} ### Utiliser une requête média diff --git a/files/fr/web/html/element/textarea/index.md b/files/fr/web/html/element/textarea/index.md index 4c38da80da..60901cd5ca 100644 --- a/files/fr/web/html/element/textarea/index.md +++ b/files/fr/web/html/element/textarea/index.md @@ -157,7 +157,7 @@ Dans cet exemple, on utilise l'attribut `placeholder` afin d'afficher une indica > **Note :** Les indications ne remplacent pas les élément {{HTMLElement("label")}}. -### Lecutre seule et contrôle désactivé +### Lecture seule et contrôle désactivé Cet exemple affiche deux éléments `<textarea>` : le premier est désactivé avec `disabled` et le second est en lecture seule avec `readonly`. Vous pouvez les manipuler pour voir les différences : pour le premier, on ne peut pas sélectionné son contenu et la valeur n'est pas envoyée avec le formulaire ; pour le second, le contenu peut être sélectionné et la valeur est envoyée, il est uniquement impossible d'éditer le contenu. diff --git a/files/fr/web/html/element/ul/index.md b/files/fr/web/html/element/ul/index.md index b2cd998f98..9106f14350 100644 --- a/files/fr/web/html/element/ul/index.md +++ b/files/fr/web/html/element/ul/index.md @@ -36,7 +36,7 @@ L'élément HTML **`<ul>`** représente une liste d'éléments sans ordre partic Un quatrième type a été défini dans l'interface WebTV : `triangle` mais tous les navigateurs ne l'implémentent pas. - > **Attention :**Cet attribut a été déprécié et ne doit pas être utilisé. Pour obtenir le même effet, on pourra utiliser la propriété CSS {{cssxref("list-style-type")}} à la place. + > **Attention :** Cet attribut a été déprécié et ne doit pas être utilisé. Pour obtenir le même effet, on pourra utiliser la propriété CSS {{cssxref("list-style-type")}} à la place. ## Notes d'utilisation @@ -113,7 +113,7 @@ L'élément HTML **`<ul>`** représente une liste d'éléments sans ordre partic #### Résultat -{{EmbedLiveSample("<ul>_et_<ol>_imbriqués","100%","180")}} +{{EmbedLiveSample("ul_et_ol_imbriqués","100%","180")}} ## Résumé technique |