From: =?utf-8?q?Bastien_ROUCARI=C3=88S?= <roucaries.bastien@gmail.com>
Date: Sat, 3 Feb 2018 23:38:58 +0100
Subject: Fix < instead of &lt; and input form

Forwarded: Yes
---
 www/advanced-unix-installation.html    | 10 +++++++---
 www/advanced-windows-installation.html |  5 ++++-
 www/animate.html                       |  5 ++++-
 www/color-management.html              |  2 +-
 www/compare.html                       |  2 +-
 www/gradient.html                      |  2 +-
 www/perl-magick.html                   |  2 +-
 www/security-policy.html               |  3 ++-
 8 files changed, 21 insertions(+), 10 deletions(-)

diff --git a/www/advanced-unix-installation.html b/www/advanced-unix-installation.html
index a76769c8c..f4120f9 100644
--- a/www/advanced-unix-installation.html
+++ b/www/advanced-unix-installation.html
@@ -71,7 +71,10 @@
         <button class="btn btn-outline-success" type="submit" name="sa">Search</button>
       </form>
     </div>
-  </div>
+    <form class="form-inline my-2 my-lg-0" action="https://legacy.imagemagick.org/script/search.php">
+      <input class="form-control mr-sm-2" type="text" name="q" placeholder="Search" aria-label="Search" />
+      <button class="btn btn-outline-success my-2 my-sm-0" type="submit" name="sa">Search</button>
+    </form>
   </nav>
 
   <div class="container">
@@ -653,7 +656,8 @@ no encode delegate for this image format
   </footer>
 
   <!-- Javascript assets -->
-  <script src="assets/magick.js" ></script>
-  </body>
+  <script>window.jQuery || document.write('&lt;script src="assets/jquery.slim.min.js"&gt;&lt;\/script&gt;')</script><script src="assets/bootstrap.bundle.min.js" crossorigin="anonymous">
+ </script>
+</body>
 </html>
 <!-- Magick Cache 13th February 2021 11:28 -->
\ No newline at end of file
diff --git a/www/advanced-windows-installation.html b/www/advanced-windows-installation.html
index 1ea504b..ae344e0 100644
--- a/www/advanced-windows-installation.html
+++ b/www/advanced-windows-installation.html
@@ -122,7 +122,10 @@
         <button class="btn btn-outline-success" type="submit" name="sa">Search</button>
       </form>
     </div>
-  </div>
+    <form class="form-inline my-2 my-lg-0" action="https://legacy.imagemagick.org/script/search.php">
+      <input class="form-control mr-sm-2" type="text" name="q" placeholder="Search" aria-label="Search" />
+      <button class="btn btn-outline-success my-2 my-sm-0" type="submit" name="sa">Search</button>
+    </form>
   </nav>
 
 <div class="col-lg-8 mx-auto p-4 py-md-5 text-body-secondary">
diff --git a/www/animate.html b/www/animate.html
index c9e4cfa..aec0b68 100644
--- a/www/animate.html
+++ b/www/animate.html
@@ -122,7 +122,10 @@
         <button class="btn btn-outline-success" type="submit" name="sa">Search</button>
       </form>
     </div>
-  </div>
+    <form class="form-inline my-2 my-lg-0" action="https://legacy.imagemagick.org/script/search.php">
+      <input class="form-control mr-sm-2" type="text" name="q" placeholder="Search" aria-label="Search" />
+      <button class="btn btn-outline-success my-2 my-sm-0" type="submit" name="sa">Search</button>
+    </form>
   </nav>
 
 <div class="col-lg-8 mx-auto p-4 py-md-5 text-body-secondary">
diff --git a/www/color-management.html b/www/color-management.html
index 33c2c31..a843897 100644
--- a/www/color-management.html
+++ b/www/color-management.html
@@ -172,7 +172,7 @@ magick myimage_channels_*.png -combine myimage2.png</samp></pre>
 
 <p>In the above example, the separated channels are non-linear and the default for <samp>-combine</samp> is to assume non-linear channels. So the result is the same as the input.</p>
 
-If one desires to separate to linear grayscale channels, recombine them later back to non-linear color, perhaps after some processing, then use the same concept as above for maintaining linear grayscale:</p>
+<p>If one desires to separate to linear grayscale channels, recombine them later back to non-linear color, perhaps after some processing, then use the same concept as above for maintaining linear grayscale:</p>
 
 <pre class="p-3 mb-2 text-body-secondary bg-body-tertiary cli"><samp>magick myimage.png -set colorspace RGB -separate myimage_channels_%d.png
 magick myimage_channels_*.png -set colorspace RGB -combine -colorspace sRGB myimage2.png
diff --git a/www/compare.html b/www/compare.html
index 96f0f6e..4a8bd93 100644
--- a/www/compare.html
+++ b/www/compare.html
@@ -480,7 +480,7 @@ transparent, extract, background, or shape the alpha channel</td>
     <td><a href="command-line-options.html#write-mask">-read-mask <var>filename</var></a></td>
     <td>associate a write mask with the image</td>
   </tr>
-
+  </tr>
   </tbody>
 </table>
 </div>
diff --git a/www/gradient.html b/www/gradient.html
index 8a9aeff..043fc0b 100644
--- a/www/gradient.html
+++ b/www/gradient.html
@@ -168,7 +168,7 @@ magick -size 256x256 radial-gradient:white-black radial_gradient.png </samp></pr
 <p><img src="../images/gradients/radial_gradient.png" alt="radial gradient" width="256" height="256" /></p>
 
 <p>If you want non-linear grayscale gradients, then add -colorspace RGB -colorspace gray 
-before saving the output. For example:<p>
+before saving the output. For example:</p>
 
 <pre class="p-3 mb-2 text-body-secondary bg-body-tertiary cli"><samp>magick -size 256x256 gradient: linear_gradient.png
 magick -size 256x256 gradient:white-black -colorspace RGB -colorspace gray linear_linear_gradient.png </samp></pre>
diff --git a/www/perl-magick.html b/www/perl-magick.html
index 5d5debb..8aa128c 100644
--- a/www/perl-magick.html
+++ b/www/perl-magick.html
@@ -1714,7 +1714,7 @@ can use the integers 1 and 0.</p>
 
   <tr>
     <td>orientation</td>
-    <td>{TopLeft, TopRight, BottomRight, BottomLeft, LeftTop, RightTop, RightBottom, LeftBottom}</td>
+    <td>{top-left, top-right, bottom-right, bottom-left, left-top, right-top, right-bottom, left-bottom}</td>
     <td>image orientation</td>
   </tr>
 
diff --git a/www/security-policy.html b/www/security-policy.html
index cd2928c..74a5c17 100644
--- a/www/security-policy.html
+++ b/www/security-policy.html
@@ -384,7 +384,8 @@ Path: [built-in]
 
 <h2><a class="anchor" id="synchronize"></a>Pixel Cache Synchronize Policy</h2>
 
-<p>When writing image pixels to disk, ImageMagick first preallocates the disk file, which is faster than fully populating the file with zeros. To improve performance even further, the file is memory-mapped on disk. This can result in an increase in performance of up to 5 times, but there is a possibility that the disk file may run out of free space as it is populated, causing the operating system (OS) to throw a SIGBUS signal which prevents ImageMagick from continuing. To prevent a SIGBUS signal from occurring, use this security policy:</p>
+<p>When writing image pixels to disk, ImageMagick firsts preallocates the disk file, which is much faster than fully populating the file with zeros.  To further increase performance, we memory-map the file on disk.  With memory-mapping, we get an increase in performance (up to 5x), however, there remains a possibility that as the disk file is populated, it may run out of free space.  The OS then throws a SIGBUS signal which prevents ImageMagick from continuing.  To prevent a SIGBUS, use this security policy:</p>
+
 
 <pre class="p-3 mb-2 text-body-secondary bg-body-tertiary">
 &lt;policy domain="cache" name="synchronize" value="True"/>
