aboutsummaryrefslogtreecommitdiff
path: root/files/fr
diff options
context:
space:
mode:
Diffstat (limited to 'files/fr')
-rw-r--r--files/fr/_redirects.txt1
-rw-r--r--files/fr/_wikihistory.json16
-rw-r--r--files/fr/orphaned/web/mathml/element/mglyph/index.html (renamed from files/fr/web/mathml/element/mglyph/index.html)3
-rw-r--r--files/fr/web/api/childnode/after/index.html4
4 files changed, 13 insertions, 11 deletions
diff --git a/files/fr/_redirects.txt b/files/fr/_redirects.txt
index e21e5b5602..71050031ab 100644
--- a/files/fr/_redirects.txt
+++ b/files/fr/_redirects.txt
@@ -5650,6 +5650,7 @@
/fr/docs/Web/JavaScript/décoder_encoder_en_base64 /fr/docs/Glossary/Base64
/fr/docs/Web/JavaScript/guide_de_demarrage /fr/docs/conflicting/Learn/Getting_started_with_the_web/JavaScript_basics
/fr/docs/Web/MathML/Attribute/Valeurs /fr/docs/Web/MathML/Attribute/Values
+/fr/docs/Web/MathML/Element/mglyph /fr/docs/orphaned/Web/MathML/Element/mglyph
/fr/docs/Web/MathML/Exemples /fr/docs/Web/MathML/Examples
/fr/docs/Web/MathML/Exemples/Dériver_la_Formule_Quadratique /fr/docs/Web/MathML/Examples/Deriving_the_Quadratic_Formula
/fr/docs/Web/MathML/Exemples/MathML_Theoreme_de_Pythagore /fr/docs/Web/MathML/Examples/MathML_Pythagorean_Theorem
diff --git a/files/fr/_wikihistory.json b/files/fr/_wikihistory.json
index 3b1152e3c9..772741df2f 100644
--- a/files/fr/_wikihistory.json
+++ b/files/fr/_wikihistory.json
@@ -24522,14 +24522,6 @@
"SphinxKnight"
]
},
- "Web/MathML/Element/mglyph": {
- "modified": "2020-10-15T21:23:58.877Z",
- "contributors": [
- "SphinxKnight",
- "Delapouite",
- "Goofy"
- ]
- },
"Web/MathML/Element/mi": {
"modified": "2019-03-23T23:29:00.435Z",
"contributors": [
@@ -46002,5 +45994,13 @@
"SphinxKnight",
"MasterFox"
]
+ },
+ "orphaned/Web/MathML/Element/mglyph": {
+ "modified": "2020-10-15T21:23:58.877Z",
+ "contributors": [
+ "SphinxKnight",
+ "Delapouite",
+ "Goofy"
+ ]
}
} \ No newline at end of file
diff --git a/files/fr/web/mathml/element/mglyph/index.html b/files/fr/orphaned/web/mathml/element/mglyph/index.html
index e19c07131f..b4785ad676 100644
--- a/files/fr/web/mathml/element/mglyph/index.html
+++ b/files/fr/orphaned/web/mathml/element/mglyph/index.html
@@ -1,11 +1,12 @@
---
title: <mglyph>
-slug: Web/MathML/Element/mglyph
+slug: orphaned/Web/MathML/Element/mglyph
tags:
- Element
- MathML
- Reference
translation_of: Web/MathML/Element/mglyph
+original_slug: Web/MathML/Element/mglyph
---
<div>{{MathMLRef}}</div>
diff --git a/files/fr/web/api/childnode/after/index.html b/files/fr/web/api/childnode/after/index.html
index 60fc5d339d..474d64a307 100644
--- a/files/fr/web/api/childnode/after/index.html
+++ b/files/fr/web/api/childnode/after/index.html
@@ -56,7 +56,7 @@ parent.appendChild(child);
child.after("Text");
console.log(parent.outerHTML);
-// "&lt;div&gt;&lt;p&gt;&lt;/p&gt;Texte&lt;/div&gt;"</pre>
+// "&lt;div&gt;&lt;p&gt;&lt;/p&gt;Text&lt;/div&gt;"</pre>
<h3 id="Insertion_d'un_élément_et_de_texte">Insertion d'un élément et de  texte</h3>
@@ -68,7 +68,7 @@ var span = document.createElement("span");
child.after(span, "Text");
console.log(parent.outerHTML);
-// "&lt;div&gt;&lt;p&gt;&lt;/p&gt;&lt;span&gt;&lt;/span&gt;Texte&lt;/div&gt;"</pre>
+// "&lt;div&gt;&lt;p&gt;&lt;/p&gt;&lt;span&gt;&lt;/span&gt;Text&lt;/div&gt;"</pre>
<h3 id="ChildNode.after()_n'est_pas_accessible"><code>ChildNode.after()</code> n'est pas accessible</h3>