From 8d36943d14aeef4ed6e742e5ebab14900cb0e772 Mon Sep 17 00:00:00 2001 From: Matt Garrish Date: Fri, 20 Sep 2024 08:28:50 -0400 Subject: [PATCH] bug test --- publishing/docs/html/svg.html | 72 +++++++++++++++++------------------ 1 file changed, 36 insertions(+), 36 deletions(-) diff --git a/publishing/docs/html/svg.html b/publishing/docs/html/svg.html index 9f8007ea..42674e35 100644 --- a/publishing/docs/html/svg.html +++ b/publishing/docs/html/svg.html @@ -48,31 +48,31 @@

Techniques

Examples

-
-
Example 1 — Default language specification
-
﹤svg xmlns="http://www.w3.org/2000/svg" xml:lang="en" lang="en">
+				
+
Example 1 — Default language specification
+
<svg xmlns="http://www.w3.org/2000/svg" xml:lang="en" lang="en">
    …
-﹤/svg>
-
+</svg> + -
-
Example 2 — Language override
-
﹤svg xmlns="http://www.w3.org/2000/svg" xml:lang="en" lang="en">
+				
+
Example 2 — Language override
+
<svg xmlns="http://www.w3.org/2000/svg" xml:lang="en" lang="en">
    …
-   ﹤text … >I think therefore I am...﹤/text>
-   ﹤text … xml:lang="fr" lang="fr">Je pense donc je suis...﹤/text>
-   ﹤text … xml:lang="it" lang="it">Penso dunque sono...﹤/text>
+   <text … >I think therefore I am...</text>
+   <text … xml:lang="fr" lang="fr">Je pense donc je suis...</text>
+   <text … xml:lang="it" lang="it">Penso dunque sono...</text>
    …
-﹤/svg>
-
+</svg> + -
-
Example 3 — Including an SVG title and description
-
﹤svg
+				
+
Example 3 — Including an SVG title and description
+
<svg
 	 xmlns="http://www.w3.org/2000/svg"
 	 xml:lang="en" lang="en">
-   ﹤title>The New EPUB Logo﹤/title>
-   ﹤desc>
+   <title>The New EPUB Logo</title>
+   <desc>
 	  The EPUB logo is a lower-case letter E that has 
 	  been tilted 45 degrees to counter-clockwise so 
 	  that it appears to be sitting in balance on its 
@@ -81,30 +81,30 @@ 

Examples

of the image, moving to the outer edge and then continuing around in a box-like pattern. The external corners have all been rounded. - ﹤/desc> + </desc> … -﹤/svg>
-
+</svg> + -
-
Example 4 — A decorative SVG
-
﹤svg
+				
+
Example 4 — A decorative SVG
+
<svg
      xmlns="http://www.w3.org/2000/svg"
      xml:lang="en" lang="en"
      role="presentation">
    …
-﹤/svg>
-
- -
-
Example 5 — Adding a title to a link
-
﹤a href="http://www.ontario.ca">
-   ﹤title>Ontario government web site﹤/title>
-   ﹤g …>
+</svg>
+ + +
+
Example 5 — Adding a title to a link
+
<a href="http://www.ontario.ca">
+   <title>Ontario government web site</title>
+   <g …>
       …
-   ﹤/g>
-﹤/a>
-
+ </g> +</a>
+
@@ -211,7 +211,7 @@

Related Links