1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094
|
From: =?utf-8?q?Bastien_Roucari=C3=A8s?= <rouca@debian.org>
Date: Wed, 5 Jun 2024 22:15:32 +0000
Subject: Remove spurious div
forwarded: not-needed
---
index.html | 1 -
www/advanced-linux-installation.html | 1 -
www/advanced-unix-installation.html | 2 +-
www/advanced-windows-installation.html | 1 -
www/animate.html | 1 -
www/api.html | 2 +-
www/api/Image++.html | 1 +
www/api/animate.html | 2 ++
www/api/magick++-classes.html | 1 +
www/architecture.html | 1 -
www/binary-releases.html | 3 +--
www/changelog.html | 4 +++-
www/cipher.html | 1 -
www/cite.html | 1 -
www/clahe.html | 1 -
www/color-management.html | 1 -
www/color-thresholding.html | 1 -
www/color.html | 1 -
www/command-line-options.html | 1 -
www/command-line-processing.html | 1 -
www/command-line-tools.html | 1 -
www/compare.html | 1 -
www/compose.html | 1 -
www/composite.html | 1 -
www/conjure.html | 1 -
www/connected-components.html | 1 -
www/contact.html | 1 -
www/convert.html | 1 -
www/convex-hull.html | 1 -
www/defines.html | 1 -
www/develop.html | 1 -
www/display.html | 1 -
www/distribute-pixel-cache.html | 1 -
www/download.html | 1 -
www/escape.html | 1 -
www/examples.html | 1 -
www/exception.html | 1 -
www/export.html | 1 -
www/formats.html | 1 -
www/fx.html | 1 -
www/gradient.html | 1 -
www/high-dynamic-range.html | 1 -
www/history.html | 1 -
www/identify.html | 1 -
www/import.html | 1 -
www/index.html | 4 +---
www/install-source.html | 1 -
www/jp2.html | 1 -
www/license.html | 1 -
www/links.html | 1 -
www/magick++.html | 1 -
www/magick-cache.html | 5 ++---
www/magick-core.html | 1 -
www/magick-script.html | 1 -
www/magick-vector-graphics.html | 1 -
www/magick-wand.html | 1 -
www/magick.html | 1 -
www/miff.html | 1 -
www/mirror.html | 1 -
www/mogrify.html | 1 -
www/montage.html | 1 -
www/motion-picture.html | 1 -
www/multispectral-imagery.html | 3 +--
www/news.html | 1 -
www/opencl.html | 1 -
www/openmp.html | 1 -
www/perl-magick.html | 1 -
www/porting.html | 1 -
www/privacy-policy.html | 3 +--
www/quantize.html | 1 -
www/resources.html | 1 -
www/search.html | 6 ++----
www/security-policy.html | 1 -
www/sitemap.html | 1 -
www/stream.html | 1 -
www/support.html | 1 -
www/vpat.html | 1 -
www/webp.html | 1 -
78 files changed, 17 insertions(+), 85 deletions(-)
diff --git a/index.html b/index.html
index b289ea1..ed41c03 100644
--- a/index.html
+++ b/index.html
@@ -319,7 +319,6 @@
<p>Join the ImageMagick community by participating in the <a href="https://github.com/ImageMagick/ImageMagick/discussions" target="_blank">discussion</a> service. Here, you can find answers to questions asked by other ImageMagick users or ask your own questions. If you have a technical question, a suggestion for an improvement, or a fix for a bug, you can also open an <a href="https://github.com/ImageMagick/ImageMagick/issues" target="_blank">issue</a> to get help from the community.</p>
</div>
- </div>
</main><!-- /.container -->
<footer class="py-5 text-center text-body-secondary bg-body-tertiary">
<div class="container-fluid">
diff --git a/www/advanced-linux-installation.html b/www/advanced-linux-installation.html
index b3040ee..0476712 100644
--- a/www/advanced-linux-installation.html
+++ b/www/advanced-linux-installation.html
@@ -648,7 +648,6 @@ no encode delegate for this image format </samp></pre>
<p>If PerlMagick fails to link with a message similar to <var>libperl.a is not found</var>, rerun <samp>configure</samp> with the <samp>--enable-shared</samp> or <samp>--enable-shared --with-modules</samp> options.</p>
</div>
- </div>
</main><!-- /.container -->
<footer class="py-5 text-center text-body-secondary bg-body-tertiary">
<div class="container-fluid">
diff --git a/www/advanced-unix-installation.html b/www/advanced-unix-installation.html
index 286729c..0455595 100644
--- a/www/advanced-unix-installation.html
+++ b/www/advanced-unix-installation.html
@@ -632,7 +632,7 @@ no encode delegate for this image format
<p>If PerlMagick fails to link with a message similar to <var>libperl.a is not found</var>, rerun <code>configure</code> with the <code>--enable-shared</code> or <code>--enable-shared --with-modules</code> options.</p>
</div>
- </div>
+</div>
</main><!-- /.container -->
<footer class="magick-footer">
<div class="container-fluid">
diff --git a/www/advanced-windows-installation.html b/www/advanced-windows-installation.html
index 2ba1c46..a773b62 100644
--- a/www/advanced-windows-installation.html
+++ b/www/advanced-windows-installation.html
@@ -183,7 +183,6 @@ program will start a Wizard that allows configuration of ImageMagick and its ind
<p>Open the solution to start building ImageMagick. The binaries will be created in the <samp>Output\bin</samp> folder.</p>
</div>
- </div>
</main><!-- /.container -->
<footer class="py-5 text-center text-body-secondary bg-body-tertiary">
<div class="container-fluid">
diff --git a/www/animate.html b/www/animate.html
index 0812fbb..fd3f454 100644
--- a/www/animate.html
+++ b/www/animate.html
@@ -592,7 +592,6 @@ transparent, extract, background, or shape the alpha channel</td>
</tbody>
</table>
</div>
- </div>
</main><!-- /.container -->
<footer class="py-5 text-center text-body-secondary bg-body-tertiary">
<div class="container-fluid">
diff --git a/www/api.html b/www/api.html
index d00f767..063d4f5 100644
--- a/www/api.html
+++ b/www/api.html
@@ -195,7 +195,7 @@
<dd><a href="http://code.google.com/p/remotemagick/">RemoteMagick</a> is an XML-RPC web service that creates image thumbnails.</dd>
</dl>
</div>
- </div>
+</div>
</main><!-- /.container -->
<footer class="magick-footer">
<p><a href="security-policy.html">Security</a> •
diff --git a/www/api/Image++.html b/www/api/Image++.html
index 1054041..2f04afa 100644
--- a/www/api/Image++.html
+++ b/www/api/Image++.html
@@ -3212,6 +3212,7 @@ the region set by a preceding getPixels or getConstPixels call.</font></td>
</tbody>
</table></ul>
</p>
+</div>
</div>
</main><!-- /.container -->
<footer class="magick-footer">
diff --git a/www/api/animate.html b/www/api/animate.html
index 5c43d8b..c2f0ffb 100644
--- a/www/api/animate.html
+++ b/www/api/animate.html
@@ -146,6 +146,7 @@
<br/>
<br/>
<div class="magick-header">
+</div>
</main><!-- /.container -->
<footer class="py-5 text-center text-body-secondary bg-body-tertiary">
<div class="container-fluid">
@@ -173,3 +174,4 @@
<!-- Javascript assets -->
<script src="../assets/magick.js" ></script>
</body>
+</html>
\ No newline at end of file
diff --git a/www/api/magick++-classes.html b/www/api/magick++-classes.html
index 42faff8..8057ebb 100644
--- a/www/api/magick++-classes.html
+++ b/www/api/magick++-classes.html
@@ -142,6 +142,7 @@ containers of image frames.</td>
</tbody>
</table>
</ul>
+</div>
</div>
</main><!-- /.container -->
<footer class="magick-footer">
diff --git a/www/architecture.html b/www/architecture.html
index d9d1934..6b7e20b 100644
--- a/www/architecture.html
+++ b/www/architecture.html
@@ -1653,7 +1653,6 @@ Image: logo:
<pre class="p-3 mb-2 text-body-secondary bg-body-tertiary"><samp>export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig </samp></pre>
</div>
- </div>
</main><!-- /.container -->
<footer class="py-5 text-center text-body-secondary bg-body-tertiary">
<div class="container-fluid">
diff --git a/www/binary-releases.html b/www/binary-releases.html
index 83401af..a66fcf0 100644
--- a/www/binary-releases.html
+++ b/www/binary-releases.html
@@ -469,8 +469,7 @@ objShell.Exec("convert ""e:/myimages/image.png"" ""e:/myimages/image.jpg""")
<p>Congratulations, you have a working ImageMagick distribution under Windows and you are ready to use ImageMagick to <a href="https://imagemagick.org/Usage/">convert, compose, or edit</a> your images or perhaps you'll want to use one of the <a href="api.html">Application Program Interfaces</a> for C, C++, Perl, and others.</p>
</div>
-
- </div>
+</div>
</main><!-- /.container -->
<footer class="magick-footer">
<p><a href="security-policy.html">Security</a> •
diff --git a/www/changelog.html b/www/changelog.html
index d13d8b9..8a41a54 100644
--- a/www/changelog.html
+++ b/www/changelog.html
@@ -1761,7 +1761,9 @@
<li> Remove OpenMP calls from colormap update loops.</li>
<dt>2011-08-01 7.0.0-0 Cristy <quetzlzacatenango@image...></dt>
<li> New version 7.0.0-0.</li>
-</dl></div> </div>
+</dl>
+</div>
+</div>
</main><!-- /.container -->
<footer class="magick-footer">
<div class="container-fluid">
diff --git a/www/cipher.html b/www/cipher.html
index 1109093..140fc45 100644
--- a/www/cipher.html
+++ b/www/cipher.html
@@ -194,7 +194,6 @@ Examples <a href="https://usage.imagemagick.org/transform/#encipher#encipher"
>Encrypting Image Data</a>. </p>
</div>
- </div>
</main><!-- /.container -->
<footer class="py-5 text-center text-body-secondary bg-body-tertiary">
<div class="container-fluid">
diff --git a/www/cite.html b/www/cite.html
index afab4ca..5f876e1 100644
--- a/www/cite.html
+++ b/www/cite.html
@@ -152,7 +152,6 @@
date = {2024-01-04},
}</samp></pre>
</div>
- </div>
</main>
<!-- /.container -->
<footer class="magick-footer">
diff --git a/www/clahe.html b/www/clahe.html
index fc8fdbb..0c5c4f9 100644
--- a/www/clahe.html
+++ b/www/clahe.html
@@ -162,7 +162,6 @@
<p>Notice the <samp>!</samp>. That forces the tile size to exactly 300x300 pixels, whereas without the <samp>!</samp>, the tile size respects the aspect ratio of the image and results in tile dimensions of <samp>300x200</samp>.</p>
</div>
- </div>
</main><!-- /.container -->
<footer class="py-5 text-center text-body-secondary bg-body-tertiary">
<div class="container-fluid">
diff --git a/www/color-management.html b/www/color-management.html
index 8ab99e5..d091da2 100644
--- a/www/color-management.html
+++ b/www/color-management.html
@@ -193,7 +193,6 @@ magick myimage_channels_*.png -set colorspace HSL -combine -colorspace RGB -set
<p>When specifying individual colors as <samp>rgb(...)</samp> or hex, these colors will still be interpreted as non-linear, that is, as sRGB colors. However if one wants to create linear colors, use <samp>icc-color(rgb,r,g,b)"</samp>, where <samp>r</samp>, <samp>g</samp>, and <samp>b</samp> are in the range 0 to 1. See the <a href="color.html" >Color</a> page.</p>
</div>
- </div>
</main><!-- /.container -->
<footer class="py-5 text-center text-body-secondary bg-body-tertiary">
<div class="container-fluid">
diff --git a/www/color-thresholding.html b/www/color-thresholding.html
index 5c866d7..2ba784a 100644
--- a/www/color-thresholding.html
+++ b/www/color-thresholding.html
@@ -204,7 +204,6 @@ magick xc:"sRGB(205,100,45)" -colorspace gray txt:
<ul><img class="img-fluid img-thumbnail" src="../images/color-thresholding-gray.gif" alt="[Color Thresholding]" width="265" height="333" name="Color Thresholding" /></ul>
</div>
- </div>
</main><!-- /.container -->
<footer class="py-5 text-center text-body-secondary bg-body-tertiary">
<div class="container-fluid">
diff --git a/www/color.html b/www/color.html
index 9973a16..2c5d49b 100644
--- a/www/color.html
+++ b/www/color.html
@@ -5009,7 +5009,6 @@ device-cmyk(0.11, 0.48, 0.83, 0.00)</samp></pre>
</div>
</div>
- </div>
</main><!-- /.container -->
<footer class="py-5 text-center text-body-secondary bg-body-tertiary">
<div class="container-fluid">
diff --git a/www/command-line-options.html b/www/command-line-options.html
index 1acb662..2a728a8 100644
--- a/www/command-line-options.html
+++ b/www/command-line-options.html
@@ -8694,7 +8694,6 @@ grayscale values causing blended updates of the image the mask is attached to.
but with strict boolean masking. </p>
</div>
</div>
- </div>
</main><!-- /.container -->
<footer class="py-5 text-center text-body-secondary bg-body-tertiary">
<div class="container-fluid">
diff --git a/www/command-line-processing.html b/www/command-line-processing.html
index 0d62c4d..58f8f34 100644
--- a/www/command-line-processing.html
+++ b/www/command-line-processing.html
@@ -704,7 +704,6 @@ image-2.jpg</pre>
<pre class="p-3 mb-2 text-body-secondary bg-body-tertiary cli"><samp>magick -define stream:buffer-size=0 logo: gif:- | magick display gif:-</samp></pre>
</div>
- </div>
</main><!-- /.container -->
<footer class="py-5 text-center text-body-secondary bg-body-tertiary">
<div class="container-fluid">
diff --git a/www/command-line-tools.html b/www/command-line-tools.html
index 1424694..4d0a4c0 100644
--- a/www/command-line-tools.html
+++ b/www/command-line-tools.html
@@ -159,7 +159,6 @@
<pre class="p-3 mb-2 text-body-secondary bg-body-tertiary cli"><samp>magick identify -verbose myImage.png</samp></pre>
</p>
</div>
- </div>
</main><!-- /.container -->
<footer class="py-5 text-center text-body-secondary bg-body-tertiary">
<div class="container-fluid">
diff --git a/www/compare.html b/www/compare.html
index c818201..1b00b92 100644
--- a/www/compare.html
+++ b/www/compare.html
@@ -481,7 +481,6 @@ transparent, extract, background, or shape the alpha channel</td>
</tbody>
</table>
</div>
- </div>
</main><!-- /.container -->
<footer class="py-5 text-center text-body-secondary bg-body-tertiary">
<div class="container-fluid">
diff --git a/www/compose.html b/www/compose.html
index 04723b9..de47870 100644
--- a/www/compose.html
+++ b/www/compose.html
@@ -731,7 +731,6 @@ with a brief summary of what they do. For more details see the equivalent
<p>To print a complete list of all the available compose operators, use <a
href="command-line-options.html#list">-list compose</a>.</p>
</div>
- </div>
</main><!-- /.container -->
<footer class="py-5 text-center text-body-secondary bg-body-tertiary">
<div class="container-fluid">
diff --git a/www/composite.html b/www/composite.html
index 71b1e9c..3f6687e 100644
--- a/www/composite.html
+++ b/www/composite.html
@@ -590,7 +590,6 @@ transparent, extract, background, or shape the alpha channel</td>
</tbody>
</table>
</div>
- </div>
</main><!-- /.container -->
<footer class="py-5 text-center text-body-secondary bg-body-tertiary">
<div class="container-fluid">
diff --git a/www/conjure.html b/www/conjure.html
index acc0479..13ec902 100644
--- a/www/conjure.html
+++ b/www/conjure.html
@@ -1191,7 +1191,6 @@ fill="color name", channel="All, Default, Alpha, Black, Blue, CMYK, Cyan, Gray,
</tbody>
</table>
</div>
- </div>
</main><!-- /.container -->
<footer class="py-5 text-center text-body-secondary bg-body-tertiary">
<div class="container-fluid">
diff --git a/www/connected-components.html b/www/connected-components.html
index bbc4846..f1f4919 100644
--- a/www/connected-components.html
+++ b/www/connected-components.html
@@ -199,7 +199,6 @@
</samp></pre>
</div>
- </div>
</main><!-- /.container -->
<footer class="py-5 text-center text-body-secondary bg-body-tertiary">
<div class="container-fluid">
diff --git a/www/contact.html b/www/contact.html
index 6577538..acaa057 100644
--- a/www/contact.html
+++ b/www/contact.html
@@ -191,7 +191,6 @@
</div>
<br />
</div>
- </div>
</main><!-- /.container -->
<footer class="py-5 text-center text-body-secondary bg-body-tertiary">
<div class="container-fluid">
diff --git a/www/convert.html b/www/convert.html
index 3d32e37..de3b0bd 100644
--- a/www/convert.html
+++ b/www/convert.html
@@ -1429,7 +1429,6 @@ transparent, extract, background, or shape the alpha channel</td>
</table>
</div>
</div>
- </div>
</main><!-- /.container -->
<footer class="py-5 text-center text-body-secondary bg-body-tertiary">
<div class="container-fluid">
diff --git a/www/convex-hull.html b/www/convex-hull.html
index 751c8d9..e4d32a4 100644
--- a/www/convex-hull.html
+++ b/www/convex-hull.html
@@ -195,7 +195,6 @@ magick [-fuzz <var>value</var>%] [-background <var>background-color</var>] -form
</p>
</div>
- </div>
</main><!-- /.container -->
<footer class="py-5 text-center text-body-secondary bg-body-tertiary">
<div class="container-fluid">
diff --git a/www/defines.html b/www/defines.html
index 51f1997..b3cb592 100644
--- a/www/defines.html
+++ b/www/defines.html
@@ -1826,7 +1826,6 @@ use:</p>
</div>
</div>
- </div>
</main><!-- /.container -->
<footer class="py-5 text-center text-body-secondary bg-body-tertiary">
<div class="container-fluid">
diff --git a/www/develop.html b/www/develop.html
index 1777441..fa4e41dc 100644
--- a/www/develop.html
+++ b/www/develop.html
@@ -282,7 +282,6 @@ With a language interface, use ImageMagick to modify or create images dynamicall
<dd class="col-md-8"><a href="http://code.google.com/p/remotemagick/">RemoteMagick</a> is an XML-RPC web service that creates image thumbnails.</dd>
</dl>
</div>
- </div>
</main><!-- /.container -->
<footer class="py-5 text-center text-body-secondary bg-body-tertiary">
<div class="container-fluid">
diff --git a/www/display.html b/www/display.html
index 946a087..c6d754e 100644
--- a/www/display.html
+++ b/www/display.html
@@ -616,7 +616,6 @@ transparent, extract, background, or shape the alpha channel</td>
</table>
</div>
- </div>
</main><!-- /.container -->
<footer class="py-5 text-center text-body-secondary bg-body-tertiary">
<div class="container-fluid">
diff --git a/www/distribute-pixel-cache.html b/www/distribute-pixel-cache.html
index 6d89758..c7abe14 100644
--- a/www/distribute-pixel-cache.html
+++ b/www/distribute-pixel-cache.html
@@ -151,7 +151,6 @@ magick -limit memory 1GiB -limit map 2GiB -limit disk 4GiB \
<p>Your image processing tasks are likely to perform slower when utilizing a distributed pixel cache due to shuffling pixels between the client and the server over a network. Algorithms that access virtual pixels (e.g. -sharpen) are noticeably slower, up to 3 times slower, than algorithms that only access authentic pixels (e.g. -negate) due to increased network traffic.</p>
<p>A client can only contact a compatible distributed pixel cache server. Compatibility requires the same ImageMagick library interface, quantum depth, HDRI status, OS word size, endianness, and passphrase. The distributed pixel cache checks these attributes and throws an exception if these requirements are not met.</p>
</div>
- </div>
</main><!-- /.container -->
<footer class="py-5 text-center text-body-secondary bg-body-tertiary">
<div class="container-fluid">
diff --git a/www/download.html b/www/download.html
index 467a36e..2567ffe 100644
--- a/www/download.html
+++ b/www/download.html
@@ -550,7 +550,6 @@ objShell.Exec("magick ""e:/myimages/image.png"" ""e:/myimages/image.jpg""")</sam
<p>Congratulations, you have a working ImageMagick distribution under Windows and you are ready to use ImageMagick to <a href="../index.html">convert, compose, or edit</a> your images or perhaps you'll want to use one of the <a href="develop.html">Application Program Interfaces</a> for C, C++, Perl, and others.</p>
</div>
- </div>
</main><!-- /.container -->
<footer class="py-5 text-center text-body-secondary bg-body-tertiary">
<div class="container-fluid">
diff --git a/www/escape.html b/www/escape.html
index 748047d..2b0151c 100644
--- a/www/escape.html
+++ b/www/escape.html
@@ -997,7 +997,6 @@ ObjectData Record
Post ObjectData Descriptor Record
9:10 Confirmed ObjectData Size</samp></pre>
</div>
- </div>
</main><!-- /.container -->
<footer class="py-5 text-center text-body-secondary bg-body-tertiary">
<div class="container-fluid">
diff --git a/www/examples.html b/www/examples.html
index a1bd3d9..4f81712 100644
--- a/www/examples.html
+++ b/www/examples.html
@@ -140,7 +140,6 @@
<ul><img class="img-fluid img-thumbnail" src="../images/examples.jpg" alt="[ImageMagick Examples]" width="734" height="2972" name="imagemagick-examples" /></ul>
</div>
- </div>
</main><!-- /.container -->
<footer class="py-5 text-center text-body-secondary bg-body-tertiary">
<div class="container-fluid">
diff --git a/www/exception.html b/www/exception.html
index 6ec1781..566033b 100644
--- a/www/exception.html
+++ b/www/exception.html
@@ -330,7 +330,6 @@
</table>
</div>
- </div>
</main><!-- /.container -->
<footer class="py-5 text-center text-body-secondary bg-body-tertiary">
<div class="container-fluid">
diff --git a/www/export.html b/www/export.html
index 33575a3..2c48af4 100644
--- a/www/export.html
+++ b/www/export.html
@@ -140,7 +140,6 @@
<p>The <a href="https://github.com/ImageMagick/ImageMagick/tree/ImageMagick-7/">ImageMagick</a> software distribution is classified as <a href="http://www.access.gpo.gov/bis/ear/txt/ccl5-pt2.txt">ECCN 5D002</a>. However, ImageMagick Studio LLC makes no warranty or representation that this classification is accurate, current, or complete. ImageMagick is exported under the <a href="http://www.access.gpo.gov/bis/ear/txt/740.txt">TSU exception in EAR 740.13(e)</a> which applies to software containing or designed for use with encryption software that is publicly available as open source. TSU further provides that <var>Posting encryption source code and corresponding object code on the Internet (e.g., FTP or World Wide Web site) where it may be downloaded by anyone neither establishes "knowledge" of a prohibited export or reexport for purposes of this paragraph, nor triggers any "red flags" necessitating the affirmative duty to inquire[...]</var>. It is your obligation as the exporter to comply with the current applicable requirements of United States export rules and regulations.</p>
</div>
- </div>
</main><!-- /.container -->
<footer class="py-5 text-center text-body-secondary bg-body-tertiary">
<div class="container-fluid">
diff --git a/www/formats.html b/www/formats.html
index d1336e4..c4c9bdc 100644
--- a/www/formats.html
+++ b/www/formats.html
@@ -2202,7 +2202,6 @@ the supported image formats.</p>
</table></div>
</div>
- </div>
</main><!-- /.container -->
<footer class="py-5 text-center text-body-secondary bg-body-tertiary">
<div class="container-fluid">
diff --git a/www/fx.html b/www/fx.html
index 03402cf..8cd031e 100644
--- a/www/fx.html
+++ b/www/fx.html
@@ -524,7 +524,6 @@ Red channel of NW corner of image #1 is 0.184582
<p>The color-escape <samp>%[pixel:]</samp> or <samp>%[hex:]</samp> is evaluated once per image and per color channel in that image (<a href="command-line-options.html#channel">-channel</a> is ignored), The values generated are then converted into a color string (a named color or hex color value). The symbols <samp>i</samp> and <samp>j</samp> are set to zero, and <samp>s</samp> and <samp>t</samp> refer to each successively current image and index.</p>
</div>
- </div>
</main><!-- /.container -->
<footer class="py-5 text-center text-body-secondary bg-body-tertiary">
<div class="container-fluid">
diff --git a/www/gradient.html b/www/gradient.html
index 0b32af5..5e9f99f 100644
--- a/www/gradient.html
+++ b/www/gradient.html
@@ -287,7 +287,6 @@ magick -size 256x128 -define gradient:radii=128,64 radial-gradient:black-white r
</div>
- </div>
</main><!-- /.container -->
<footer class="py-5 text-center text-body-secondary bg-body-tertiary">
<div class="container-fluid">
diff --git a/www/high-dynamic-range.html b/www/high-dynamic-range.html
index 229b2fb..deaa05a 100644
--- a/www/high-dynamic-range.html
+++ b/www/high-dynamic-range.html
@@ -168,7 +168,6 @@ Features: HDRI
\( img_sdr.tif -depth 8 \) \( img_hdr.tif -depth 16 \) uhdr:ultrahdr.jpg
</samp></pre>
</div>
- </div>
</main><!-- /.container -->
<footer class="py-5 text-center text-body-secondary bg-body-tertiary">
<div class="container-fluid">
diff --git a/www/history.html b/www/history.html
index 181b8b4..0a716cd 100644
--- a/www/history.html
+++ b/www/history.html
@@ -157,7 +157,6 @@
<p>Cristy<br />Principal ImageMagick Architect</p>
</div>
- </div>
</main><!-- /.container -->
<footer class="py-5 text-center text-body-secondary bg-body-tertiary">
<div class="container-fluid">
diff --git a/www/identify.html b/www/identify.html
index 2ec0aa0..141e3e2 100644
--- a/www/identify.html
+++ b/www/identify.html
@@ -498,7 +498,6 @@ transparent, extract, background, or shape the alpha channel</td>
</table>
</div>
- </div>
</main><!-- /.container -->
<footer class="py-5 text-center text-body-secondary bg-body-tertiary">
<div class="container-fluid">
diff --git a/www/import.html b/www/import.html
index 54661b5..49d86bf 100644
--- a/www/import.html
+++ b/www/import.html
@@ -485,7 +485,6 @@
</table>
</div>
- </div>
</main><!-- /.container -->
<footer class="py-5 text-center text-body-secondary bg-body-tertiary">
<div class="container-fluid">
diff --git a/www/index.html b/www/index.html
index 400b4c0..01e8c7d 100644
--- a/www/index.html
+++ b/www/index.html
@@ -316,9 +316,7 @@
<h4><a class="anchor" id="community"></a>Community</h4>
<p>Join the ImageMagick community by participating in the <a href="https://github.com/ImageMagick/ImageMagick/discussions" target="_blank">discussion</a> service. Here, you can find answers to questions asked by other ImageMagick users or ask your own questions. If you have a technical question, a suggestion for an improvement, or a fix for a bug, you can also open an <a href="https://github.com/ImageMagick/ImageMagick/issues" target="_blank">issue</a> to get help from the community.</p>
-
</div>
- </div>
</main><!-- /.container -->
<footer class="py-5 text-center text-body-secondary bg-body-tertiary">
<div class="container-fluid">
@@ -339,8 +337,8 @@
<a href="https://twitter.com/imagemagick" target="_blank" rel="noopener" aria-label="Twitter"><svg xmlns="http://www.w3.org/2000/svg" class="navbar-nav-svg" viewBox="0 0 300 300" width="2%" height="2%" role="img" focusable="false"><title>Twitter</title><path d="M178.57 127.15 290.27 0h-26.46l-97.03 110.38L89.34 0H0l117.13 166.93L0 300.25h26.46l102.4-116.59 81.8 116.59h89.34M36.01 19.54H76.66l187.13 262.13h-40.66"/></svg></a>
<br/>
<small>Copyright © 1999 ImageMagick Studio LLC</small>
+ </div>
</footer>
-</div>
</div>
<!-- Javascript assets -->
<script src="assets/magick.js" ></script>
diff --git a/www/install-source.html b/www/install-source.html
index 8dbf376..6f0cb36 100644
--- a/www/install-source.html
+++ b/www/install-source.html
@@ -225,7 +225,6 @@ to compile the program and on completion run the program.</p>
<p>The above instructions will satisfy a great number of ImageMagick users, but we suspect a few will have additional questions or problems to consider. For example, what does one do if ImageMagick fails to configure or compile? Or what if you want to install ImageMagick in a place other than the <kbd>ImageMagick-7.1.1/VisualMagick/bin</kbd> folder? You will find the answer to these questions, and more, in <a href="advanced-windows-installation.html">Advanced Windows Source Installation</a>.</p>
</div>
- </div>
</main><!-- /.container -->
<footer class="py-5 text-center text-body-secondary bg-body-tertiary">
<div class="container-fluid">
diff --git a/www/jp2.html b/www/jp2.html
index 8aae916..42bc9f7 100644
--- a/www/jp2.html
+++ b/www/jp2.html
@@ -206,7 +206,6 @@
</tr>
</table></div>
</div>
- </div>
</main><!-- /.container -->
<footer class="py-5 text-center text-body-secondary bg-body-tertiary">
<div class="container-fluid">
diff --git a/www/license.html b/www/license.html
index cb26082..a0fa18d 100644
--- a/www/license.html
+++ b/www/license.html
@@ -261,7 +261,6 @@
under the License. </samp></pre>
</div>
- </div>
</main><!-- /.container -->
<footer class="py-5 text-center text-body-secondary bg-body-tertiary">
<div class="container-fluid">
diff --git a/www/links.html b/www/links.html
index 3449184..8da48d2 100644
--- a/www/links.html
+++ b/www/links.html
@@ -216,7 +216,6 @@
<dd class="col-md-8"><a href="../index.html" target="_blank">The Tao of the Spiritual Warrior</a></dd>
</ul>
</div>
- </div>
</main><!-- /.container -->
<footer class="py-5 text-center text-body-secondary bg-body-tertiary">
<div class="container-fluid">
diff --git a/www/magick++.html b/www/magick++.html
index f20814e..b6879e6 100644
--- a/www/magick++.html
+++ b/www/magick++.html
@@ -241,7 +241,6 @@ int main(int argc,char **argv)
<a href="https://github.com/ImageMagick/ImageMagick/discussions">Magick++ community forum</a>.
</p>
</div>
- </div>
</main><!-- /.container -->
<footer class="py-5 text-center text-body-secondary bg-body-tertiary">
<div class="container-fluid">
diff --git a/www/magick-cache.html b/www/magick-cache.html
index 91e2185..04ac2bf 100644
--- a/www/magick-cache.html
+++ b/www/magick-cache.html
@@ -8,8 +8,8 @@
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>ImageMagick – MagickCache: an Efficient Image Cache</title>
- <meta name="keywords" content="MagickCache: an Efficient Image Cache, Image Processing, Digital Image Editing, Image Conversion, Open-Source Software, Image Manipulation, Command-Line Image Tools" />
- <meta name="description" content="ImageMagick is a powerful, open-source software suite for creating, editing, converting, and manipulating images in over 200 formats. Ideal for web developers, graphic designers, and researchers, it offers versatile tools for image processing, including batch processing, format conversion, and complex image transformations." />
+ <meta name="keywords" content="magickcache:, an, efficient, image, cache, image processing, image manipulation, image conversion, graphic design tool, image editing" />
+ <meta name="description" content="Secure methods and tools to cache images, image sequences, video, audio or metadata in a local folder." />
<meta name="application-name" content="ImageMagick" />
<meta name="description" content="Secure methods and tools to cache images, image sequences, video, audio or metadata in a local folder." />
<meta name="application-url" content="https://imagemagick.org" />
@@ -198,7 +198,6 @@ identified 1 resources</samp></pre>
<h4>Security</h4>
<p>MagickCache security is not crytographically strong. Instead it generates a unique hash for each resource ensuring the resource ID cannot be discovered. A resource is accessible to both the user of the cache and the cache owner provided they can present their respective passkeys. They are also accessible to anyone with sufficient privileges to access the MagickCache disk path.</p>
</div>
- </div>
</main><!-- /.container -->
<footer class="py-5 text-center text-body-secondary bg-body-tertiary">
<div class="container-fluid">
diff --git a/www/magick-core.html b/www/magick-core.html
index 309c200..56f9fe6 100644
--- a/www/magick-core.html
+++ b/www/magick-core.html
@@ -393,7 +393,6 @@ int main(int argc,char **argv)
<p>If OpenMP is being used (starting from version 5.0), the OpenMP implementation itself handles starting and stopping worker threads and allocating and freeing resources using its own methods. This means that after calling <samp>MagickCoreTerminus()</samp>, some OpenMP resources and worker threads might still remain allocated. To address this, the function <samp>omp_pause_resource_all(omp_pause_hard)</samp> can be invoked. This function, introduced in OpenMP version 5.0, ensures that any resources allocated by OpenMP (such as threads and thread-specific memory) are freed. It's recommended to call this function after <samp>MagickCoreTerminus()</samp> has completed its execution.</p>
</div>
- </div>
</main><!-- /.container -->
<footer class="py-5 text-center text-body-secondary bg-body-tertiary">
<div class="container-fluid">
diff --git a/www/magick-script.html b/www/magick-script.html
index d4d8ab4..4bb2665 100644
--- a/www/magick-script.html
+++ b/www/magick-script.html
@@ -1345,7 +1345,6 @@ transparent, extract, background, or shape the alpha channel</td>
</table>
</div>
</div>
- </div>
</main><!-- /.container -->
<footer class="py-5 text-center text-body-secondary bg-body-tertiary">
<div class="container-fluid">
diff --git a/www/magick-vector-graphics.html b/www/magick-vector-graphics.html
index 5ce7c72..d1fcbde 100644
--- a/www/magick-vector-graphics.html
+++ b/www/magick-vector-graphics.html
@@ -940,7 +940,6 @@ round</samp></pre></td>
</table></div>
<p>Note, the primitives are case sensitive, e.g., use <code>viewbox</code>, not <code>viewBox</code>.</p>
</div>
- </div>
</main><!-- /.container -->
<footer class="py-5 text-center text-body-secondary bg-body-tertiary">
<div class="container-fluid">
diff --git a/www/magick-wand.html b/www/magick-wand.html
index 89ef906..576dafa 100644
--- a/www/magick-wand.html
+++ b/www/magick-wand.html
@@ -435,7 +435,6 @@ int main(int argc,char **argv)
<p>If OpenMP is being used (starting from version 5.0), the OpenMP implementation itself handles starting and stopping worker threads and allocating and freeing resources using its own methods. This means that after calling <samp>MagickWandTerminus()</samp>, some OpenMP resources and worker threads might still remain allocated. To address this, the function <samp>omp_pause_resource_all(omp_pause_hard)</samp> can be invoked. This function, introduced in OpenMP version 5.0, ensures that any resources allocated by OpenMP (such as threads and thread-specific memory) are freed. It's recommended to call this function after <samp>MagickWandTerminus()</samp> has completed its execution.</p>
<p><a href="../MagickWand/index.html">MagickWand Examples in C</a> illustrates how to use the ImageMagick MagickWand API. Each example is presented as a C function, complete with headers, so that it can be copied to a file and then included in your own C project.</p>
</div>
- </div>
</main><!-- /.container -->
<footer class="py-5 text-center text-body-secondary bg-body-tertiary">
<div class="container-fluid">
diff --git a/www/magick.html b/www/magick.html
index 893fdf9..d019a89 100644
--- a/www/magick.html
+++ b/www/magick.html
@@ -1405,7 +1405,6 @@ transparent, extract, background, or shape the alpha channel</td>
</table>
</div>
</div>
- </div>
</main><!-- /.container -->
<footer class="py-5 text-center text-body-secondary bg-body-tertiary">
<div class="container-fluid">
diff --git a/www/miff.html b/www/miff.html
index 47115fd..d404429 100644
--- a/www/miff.html
+++ b/www/miff.html
@@ -300,7 +300,6 @@ or fewer colors in the image, each byte of image data contains an index value. I
<p>MIFF files may contain more than one image. Simply concatenate each individual image (composed of a header and image data) into one file.</p>
</div>
- </div>
</main><!-- /.container -->
<footer class="py-5 text-center text-body-secondary bg-body-tertiary">
<div class="container-fluid">
diff --git a/www/mirror.html b/www/mirror.html
index 6d4cab1..270cf6b 100644
--- a/www/mirror.html
+++ b/www/mirror.html
@@ -167,7 +167,6 @@
</dl>
<p>If you want to add a new mirror, please <a href="https://imagemagick.org/script/contact.php">contact us</a>.</p>
</div>
- </div>
</main><!-- /.container -->
<footer class="py-5 text-center text-body-secondary bg-body-tertiary">
<div class="container-fluid">
diff --git a/www/mogrify.html b/www/mogrify.html
index d93ce1a..5a7f255 100644
--- a/www/mogrify.html
+++ b/www/mogrify.html
@@ -1407,7 +1407,6 @@ transparent, extract, background, or shape the alpha channel</td>
</table>
</div>
- </div>
</main><!-- /.container -->
<footer class="py-5 text-center text-body-secondary bg-body-tertiary">
<div class="container-fluid">
diff --git a/www/montage.html b/www/montage.html
index 1ac2aa2..e29af96 100644
--- a/www/montage.html
+++ b/www/montage.html
@@ -713,7 +713,6 @@ transparent, extract, background, or shape the alpha channel</td>
</table>
</div>
- </div>
</main><!-- /.container -->
<footer class="py-5 text-center text-body-secondary bg-body-tertiary">
<div class="container-fluid">
diff --git a/www/motion-picture.html b/www/motion-picture.html
index ad925c0..af14d8f 100644
--- a/www/motion-picture.html
+++ b/www/motion-picture.html
@@ -246,7 +246,6 @@ dpx:user.data
</samp></pre>
</div>
- </div>
</main><!-- /.container -->
<footer class="py-5 text-center text-body-secondary bg-body-tertiary">
<div class="container-fluid">
diff --git a/www/multispectral-imagery.html b/www/multispectral-imagery.html
index ac3e773..ef7b688 100644
--- a/www/multispectral-imagery.html
+++ b/www/multispectral-imagery.html
@@ -148,7 +148,7 @@
<pre class="p-3 mb-2 text-body-secondary bg-body-tertiary"><samp>0,0: 10,20,30,40,50,60</samp></pre>
<p>Let's convert that to the TIFF image format:</p>
<pre class="p-3 mb-2 text-body-secondary bg-body-tertiary"><samp>$ magick -size 1x1 -colorspace CMYK -define ftxt:format="\x,\y:\c\n" -define ftxt:hasalpha=false -define ftxt:nummeta=2 ftxt:multiMeta.txt multiMeta.tif</samp></pre>
-<p>Let confirm that worked as expected:<p>
+<p>Let confirm that worked as expected:</p>
<pre class="pre-scrollable p-3 mb-2 text-body-secondary bg-body-tertiary"><samp>$ identify -verbose multiMeta.tif
Image:
Filename: multiMeta.tif
@@ -288,7 +288,6 @@ Image:
<p>You can preserve multispectral images by writing them to a format that supports meta channels such as TIFF or PSD. If you write to other image formats that do not support multisprectal images, the channels are not preserved and instead lost-- e.g., PNG. In this example, we read, resize, and write a multispectral image:</p>
<pre class="p-3 mb-2 text-body-secondary bg-body-tertiary"><samp>magick multiMeta.tif -resize 50% resizedMeta.tif</samp></pre>
</div>
- </div>
</main><!-- /.container -->
<footer class="py-5 text-center text-body-secondary bg-body-tertiary">
<div class="container-fluid">
diff --git a/www/news.html b/www/news.html
index 5c75110..30e101a 100644
--- a/www/news.html
+++ b/www/news.html
@@ -174,7 +174,6 @@
<p>Now that ImageMagick version 7 is released, we continue to maintain the legacy release of ImageMagick, version 6, at <a href="../index.html">https://legacy.imagemagick.org</a>. Learn how ImageMagick version 7 differs from previous versions with our <a href="porting.html">porting guide</a>.</p>
</div>
- </div>
</main><!-- /.container -->
<footer class="py-5 text-center text-body-secondary bg-body-tertiary">
<div class="container-fluid">
diff --git a/www/opencl.html b/www/opencl.html
index 3a7e2f6..f2524c4 100644
--- a/www/opencl.html
+++ b/www/opencl.html
@@ -181,7 +181,6 @@ if (InitializeOpenCL(clEnv,exception) == MagickFalse)
/* looks like OpenCL is not supported */
}</samp></pre>
</div>
- </div>
</main><!-- /.container -->
<footer class="py-5 text-center text-body-secondary bg-body-tertiary">
<div class="container-fluid">
diff --git a/www/openmp.html b/www/openmp.html
index 92607d9..9115c43 100644
--- a/www/openmp.html
+++ b/www/openmp.html
@@ -157,7 +157,6 @@ Performance[7]: 40i 4.274ips 0.857e 15.540u 0:02.340
Performance[8]: 40i 4.831ips 0.872e 15.680u 0:02.070</samp></pre>
<p>Better performance correlates with higher values of IPS (iterations-per-second). In our example, 8 cores are optimal. However, in certain cases it might be optimal to set the number of threads to 1 (e.g. <samp>-limit thread 1</samp>) or to disable OpenMP completely. To disable this feature, add <samp>--disable-openmp</samp> to your configure script command line then rebuild and re-install ImageMagick.</p>
</div>
- </div>
</main><!-- /.container -->
<footer class="py-5 text-center text-body-secondary bg-body-tertiary">
<div class="container-fluid">
diff --git a/www/perl-magick.html b/www/perl-magick.html
index 12cf021..e8c1863 100644
--- a/www/perl-magick.html
+++ b/www/perl-magick.html
@@ -2697,7 +2697,6 @@ XServerWarning
</samp></pre>
</div>
- </div>
</main><!-- /.container -->
<footer class="py-5 text-center text-body-secondary bg-body-tertiary">
<div class="container-fluid">
diff --git a/www/porting.html b/www/porting.html
index fd3516e..d08e4c6 100644
--- a/www/porting.html
+++ b/www/porting.html
@@ -718,7 +718,6 @@ example "+annotate", "+resize", "+clut", and "+draw" .</p>
<li>The FilterImage() method has been removed. Use ConvolveImage() instead.</li>
</ul>
</div>
- </div>
</main><!-- /.container -->
<footer class="py-5 text-center text-body-secondary bg-body-tertiary">
<div class="container-fluid">
diff --git a/www/privacy-policy.html b/www/privacy-policy.html
index d4c7c66..8d1ea1b 100644
--- a/www/privacy-policy.html
+++ b/www/privacy-policy.html
@@ -120,7 +120,7 @@
</li>
</ul>
<form class="d-flex form-inline" action="search.html">
- <input class="form-control me-2" type="text" name="q" placeholder="Search" aria-label="Search">
+ <input class="form-control me-2" type="text" name="q" placeholder="Search" aria-label="Search" />
<button class="btn btn-outline-success" type="submit" name="sa">Search</button>
</form>
</div>
@@ -139,7 +139,6 @@
<p class="lead">As the organization overseeing the open-source ImageMagick software distribution, ImageMagick Studio LLC does not collect any personal identifier information (PII). In addition to the organization, the ImageMagick software distribution does not collect PII either.</p>
</div>
- </div>
</main><!-- /.container -->
<footer class="py-5 text-center text-body-secondary bg-body-tertiary">
<div class="container-fluid">
diff --git a/www/quantize.html b/www/quantize.html
index b14039a..8b5a751 100644
--- a/www/quantize.html
+++ b/www/quantize.html
@@ -256,7 +256,6 @@ while number of nodes with (n2 > 0) > required maximum number of colors
</table></div>
</div>
- </div>
</main><!-- /.container -->
<footer class="py-5 text-center text-body-secondary bg-body-tertiary">
<div class="container-fluid">
diff --git a/www/resources.html b/www/resources.html
index 533c6a7..0b5164c 100644
--- a/www/resources.html
+++ b/www/resources.html
@@ -430,7 +430,6 @@ $MAGICK_FONT_PATH</samp></pre>
<p>Define arguments for the <samp>MAGICK_MEMORY_LIMIT</samp>, <samp>MAGICK_DISK_LIMIT</samp>, and <samp>MAGICK_MEMORY_LIMIT</samp> environment variables with SI prefixes (.e.g <samp>100MB</samp>). <samp>MAGICK_WIDTH_LIMIT</samp>, <samp>MAGICK_HEIGHT_LIMIT</samp> and <samp>MAGICK_AREA_LIMIT</samp> accepts pixel suffixes such as MP for mega-pixels (e.g. 100MP). Note, you can restrict limits relative to any <a href="../www/policy-open.xml">security policies</a>, but you cannot relax them.</p>
</div>
- </div>
</main><!-- /.container -->
<footer class="py-5 text-center text-body-secondary bg-body-tertiary">
<div class="container-fluid">
diff --git a/www/search.html b/www/search.html
index e48aa3f..3f27d6f 100644
--- a/www/search.html
+++ b/www/search.html
@@ -126,15 +126,14 @@
</div>
</div>
</nav>
-
+<main>
<div class="col-lg-8 mx-auto p-4 py-md-5 text-body-secondary">
<header class="d-flex align-items-center pb-3 mb-5 border-bottom">
<a href="../index.html" class="d-flex align-items-center text-decoration-none">
<h1 class="fs-4">Search</h1>
</a>
</header>
-
- <main class="container">
+</div>
</main><!-- /.container -->
<footer class="py-5 text-center text-body-secondary bg-body-tertiary">
<div class="container-fluid">
@@ -157,7 +156,6 @@
<small>Copyright © 1999 ImageMagick Studio LLC</small>
</div>
</footer>
-</div>
<!-- Javascript assets -->
<script src="assets/magick.js" ></script>
diff --git a/www/security-policy.html b/www/security-policy.html
index eaf4850..e7492ba 100644
--- a/www/security-policy.html
+++ b/www/security-policy.html
@@ -423,7 +423,6 @@ Path: [built-in]
</ol>
</div>
- </div>
</main><!-- /.container -->
<footer class="py-5 text-center text-body-secondary bg-body-tertiary">
<div class="container-fluid">
diff --git a/www/sitemap.html b/www/sitemap.html
index 937e8cc..977c6ac 100644
--- a/www/sitemap.html
+++ b/www/sitemap.html
@@ -404,7 +404,6 @@
<p>We continue to maintain the legacy release of ImageMagick, version 6, at <a href="../index.html">https://legacy.imagemagick.org</a>. We maintain an archive of <a href="https://legacy.imagemagick.org/discourse-server/">legacy ImageMagick discussions</a>.</p>
</div>
- </div>
</main><!-- /.container -->
<footer class="py-5 text-center text-body-secondary bg-body-tertiary">
<div class="container-fluid">
diff --git a/www/stream.html b/www/stream.html
index eda2424..28ea26b 100644
--- a/www/stream.html
+++ b/www/stream.html
@@ -332,7 +332,6 @@ magick display -depth 8 -size 640x480 rgb:pixels.dat
</table>
</div>
- </div>
</main><!-- /.container -->
<footer class="py-5 text-center text-body-secondary bg-body-tertiary">
<div class="container-fluid">
diff --git a/www/support.html b/www/support.html
index d6413b0..54d44e0 100644
--- a/www/support.html
+++ b/www/support.html
@@ -194,7 +194,6 @@
</div>
- </div>
</main><!-- /.container -->
<footer class="py-5 text-center text-body-secondary bg-body-tertiary">
<div class="container-fluid">
diff --git a/www/vpat.html b/www/vpat.html
index 0235ea1..4603b0b 100644
--- a/www/vpat.html
+++ b/www/vpat.html
@@ -184,7 +184,6 @@
</div>
- </div>
</main><!-- /.container -->
<footer class="py-5 text-center text-body-secondary bg-body-tertiary">
<div class="container-fluid">
diff --git a/www/webp.html b/www/webp.html
index 90ded5e..a4dd37e 100644
--- a/www/webp.html
+++ b/www/webp.html
@@ -252,7 +252,6 @@
</tbody>
</table></div>
</div>
- </div>
</main><!-- /.container -->
<footer class="py-5 text-center text-body-secondary bg-body-tertiary">
<div class="container-fluid">
|