diff --git a/files/en-us/web/api/attr/localname/index.md b/files/en-us/web/api/attr/localname/index.md
index 4998b3b94c1b5fb..f20c352486ee38f 100644
--- a/files/en-us/web/api/attr/localname/index.md
+++ b/files/en-us/web/api/attr/localname/index.md
@@ -35,7 +35,7 @@ The following example displays the local name of the first attribute of the two
-Local part of the attribute xml:lang
:
+Local part of the attribute xml:lang
:
```
### JavaScript Content
diff --git a/files/en-us/web/api/attr/name/index.md b/files/en-us/web/api/attr/name/index.md
index bf83d9efdb76f5d..f3ef5b3a8530439 100644
--- a/files/en-us/web/api/attr/name/index.md
+++ b/files/en-us/web/api/attr/name/index.md
@@ -31,7 +31,7 @@ The following example displays the qualified name of the first attribute of the
-Qualified name of the attribute xml:lang
:
+Qualified name of the attribute xml:lang
:
```
### JavaScript Content
diff --git a/files/en-us/web/api/attr/namespaceuri/index.md b/files/en-us/web/api/attr/namespaceuri/index.md
index 94364258beda26f..96b380da0652d81 100644
--- a/files/en-us/web/api/attr/namespaceuri/index.md
+++ b/files/en-us/web/api/attr/namespaceuri/index.md
@@ -42,7 +42,7 @@ In the case of the SVG element, it will return the URI of the XML namespace, `ht
-URI of the attribute xml:lang
namespace:
+URI of the attribute xml:lang
namespace:
```
### JavaScript Content
diff --git a/files/en-us/web/api/attr/ownerelement/index.md b/files/en-us/web/api/attr/ownerelement/index.md
index 95f64063b9ab014..d5403279dfab20e 100644
--- a/files/en-us/web/api/attr/ownerelement/index.md
+++ b/files/en-us/web/api/attr/ownerelement/index.md
@@ -29,7 +29,7 @@ The following example displays the qualified name of the element of the two firs
-Qualified name of the owner element of the attribute xml:lang
:
+Qualified name of the owner element of the attribute xml:lang
:
```
### JavaScript Content
diff --git a/files/en-us/web/api/attr/prefix/index.md b/files/en-us/web/api/attr/prefix/index.md
index 2c3c381303b85d5..0e1865ecc95dd9d 100644
--- a/files/en-us/web/api/attr/prefix/index.md
+++ b/files/en-us/web/api/attr/prefix/index.md
@@ -33,7 +33,7 @@ A string containing the prefix of the namespace the attribute belongs too. If no
-Prefix of the attribute xml:lang
:
+Prefix of the attribute xml:lang
:
```
### JavaScript Content
diff --git a/files/en-us/web/api/attr/value/index.md b/files/en-us/web/api/attr/value/index.md
index 058fc0919214ed8..98ed4510fd795c4 100644
--- a/files/en-us/web/api/attr/value/index.md
+++ b/files/en-us/web/api/attr/value/index.md
@@ -26,7 +26,7 @@ The following example displays the current value of the attribute `test`. Clicki
-Current value of the test
attribute:
+Current value of the test
attribute:
```
### JavaScript Content
diff --git a/files/en-us/web/api/blob/blob/index.md b/files/en-us/web/api/blob/blob/index.md
index 4ea7adf6d5964cb..b8c9cdb3da3d608 100644
--- a/files/en-us/web/api/blob/blob/index.md
+++ b/files/en-us/web/api/blob/blob/index.md
@@ -50,7 +50,7 @@ A new {{domxref("Blob")}} object containing the specified data.
## Examples
```js
-const array = ['hey!']; // an array consisting of a single string
+const array = ['hey!
']; // an array consisting of a single string
const blob = new Blob(array, {type : 'text/html'}); // the blob
```
diff --git a/files/en-us/web/api/document/activeelement/index.md b/files/en-us/web/api/document/activeelement/index.md
index e5d950b724875ad..dee7e1e1ca8f03c 100644
--- a/files/en-us/web/api/document/activeelement/index.md
+++ b/files/en-us/web/api/document/activeelement/index.md
@@ -51,8 +51,8 @@ The {{domxref('Element')}} which currently has focus, {{HTMLElement("body")}} or
-
Active element ID:
-Selected text:
+Active element ID:
+Selected text:
``` ### JavaScript diff --git a/files/en-us/web/api/formdata/using_formdata_objects/index.md b/files/en-us/web/api/formdata/using_formdata_objects/index.md index 623ac89f6e374bf..a7e5fc090971242 100644 --- a/files/en-us/web/api/formdata/using_formdata_objects/index.md +++ b/files/en-us/web/api/formdata/using_formdata_objects/index.md @@ -29,7 +29,7 @@ formData.append("accountnum", 123456); // number 123456 is immediately converted formData.append("userfile", fileInputElement.files[0]); // JavaScript file-like object -const content = 'hey!'; // the body of the new file… +const content = 'hey!'; // the body of the new file… const blob = new Blob([content], { type: "text/xml"}); formData.append("webmasterfile", blob); diff --git a/files/en-us/web/guide/parsing_and_serializing_xml/index.md b/files/en-us/web/guide/parsing_and_serializing_xml/index.md index 4889eea2624cf58..a23eca1940cd614 100644 --- a/files/en-us/web/guide/parsing_and_serializing_xml/index.md +++ b/files/en-us/web/guide/parsing_and_serializing_xml/index.md @@ -39,7 +39,7 @@ Using one of the following approaches to create an XML document (which is an ins This example converts an XML fragment in a string into a DOM tree using a {{domxref("DOMParser")}}: ```js -const xmlStr = 'hey!'; +const xmlStr = '
hey!'; const parser = new DOMParser(); const doc = parser.parseFromString(xmlStr, "application/xml"); // print the name of the root element or error message diff --git a/files/en-us/web/html/element/slot/index.md b/files/en-us/web/html/element/slot/index.md index 75241d89de016e2..222bd006050f2d5 100644 --- a/files/en-us/web/html/element/slot/index.md +++ b/files/en-us/web/html/element/slot/index.md @@ -109,7 +109,7 @@ This element includes the [global attributes](/en-US/docs/Web/HTML/Global_attrib
<NEED NAME >
- @@ -62,8 +62,8 @@ Applying the SVG effect to (X)HTML is accomplished by assigning the `target` cla
Lorem ipsum dolor sit amet, consectetur adipisicing - elit, sed do eiusmod tempor incididunt - ut labore et dolore magna aliqua. + elit, sed do eiusmod tempor incididunt + ut labore et dolore magna aliqua. Ut enim ad minim veniam.
``` @@ -83,8 +83,8 @@ This example demonstrates using SVG to clip HTML content. Notice that even the cLorem ipsum dolor sit amet, consectetur adipisicing - elit, sed do eiusmod tempor incididunt - ut labore et dolore magna aliqua. + elit, sed do eiusmod tempor incididunt + ut labore et dolore magna aliqua. Ut enim ad minim veniam.
@@ -134,8 +134,8 @@ This demonstrates applying a filter to HTML content using SVG. It establishes selorem
Lorem ipsum dolor sit amet, consectetur adipisicing - elit, sed do eiusmod tempor incididunt - ut labore et dolore magna aliqua. + elit, sed do eiusmod tempor incididunt + ut labore et dolore magna aliqua. Ut enim ad minim veniam.
``` @@ -191,8 +191,8 @@ The five filters are applied using the following CSS: ```css p.target { filter:url(#f3); } p.target:hover { filter:url(#f5); } -b.target { filter:url(#f1); } -b.target:hover { filter:url(#f4); } +em.target { filter:url(#f1); } +em.target:hover { filter:url(#f4); } pre.target { filter:url(#f2); } pre.target:hover { filter:url(#f3); } ``` diff --git a/files/en-us/web/web_components/using_templates_and_slots/index.md b/files/en-us/web/web_components/using_templates_and_slots/index.md index 7a4fbc4b3607b8a..1c043ca9b934542 100644 --- a/files/en-us/web/web_components/using_templates_and_slots/index.md +++ b/files/en-us/web/web_components/using_templates_and_slots/index.md @@ -163,7 +163,7 @@ First of all, we use the {{HTMLElement("slot")}} element within a {{HTMLElement(<NEED NAME >
-