diff --git a/html/_sources/design/dynamic_image.rst.txt b/html/_sources/design/dynamic_image.rst.txt
index 546bfa4d9..ec9b01e3f 100644
--- a/html/_sources/design/dynamic_image.rst.txt
+++ b/html/_sources/design/dynamic_image.rst.txt
@@ -159,14 +159,14 @@ upside down:
.. code-block:: cpp
- #include
+ #include
template // Could be rgb8_image_t or any_image<...>
void save_180rot(const std::string& file_name)
{
Image img;
- jpeg_read_image(file_name, img);
- jpeg_write_view(file_name, rotated180_view(view(img)));
+ read_image(file_name, img, jpeg_tag());
+ write_view(file_name, rotated180_view(view(img)), jpeg_tag());
}
It can be instantiated with either a compile-time or a runtime image
diff --git a/html/_sources/io.rst.txt b/html/_sources/io.rst.txt
index 01462dbc9..6f4737167 100644
--- a/html/_sources/io.rst.txt
+++ b/html/_sources/io.rst.txt
@@ -172,6 +172,8 @@ provides access to the so-called backend.
For instance::
+ typedef bmp_tag tag_t;
+
typedef get_reader_backend< const std::string
, tag_t
>::type backend_t;
@@ -245,7 +247,7 @@ The following example shows this feature::
, gray16_image_t
, rgb8_image_t
, rgba8_image_t
- > my_img_types > runtime_image;
+ > runtime_image;
read_image( filename
, runtime_image
@@ -323,7 +325,7 @@ Writing an any_image<...> is supported. See the following example::
, gray16_image_t
, rgb8_image_t
, rgba8_image_t
- > my_img_types > runtime_image;
+ > runtime_image;
// fill any_image
diff --git a/html/_static/boost.css b/html/_static/boost.css
index 28f893599..582f421eb 100644
--- a/html/_static/boost.css
+++ b/html/_static/boost.css
@@ -714,3 +714,22 @@ span.purple { color: purple; }
span.gold { color: gold; }
span.silver { color: silver; } /* lighter gray */
span.gray { color: #808080; } /* light gray */
+
+/* 2022 fix */
+
+ol.simple ol p,
+ol.simple ul p,
+ul.simple ol p,
+ul.simple ul p {
+ margin-top: 0;
+}
+
+ol.simple > li:not(:first-child) > p,
+ul.simple > li:not(:first-child) > p {
+ margin-top: 0;
+}
+
+ol.simple p,
+ul.simple p {
+ margin-bottom: 0;
+}
diff --git a/html/design/basics.html b/html/design/basics.html
index 5653b699e..dfec5ddd6 100644
--- a/html/design/basics.html
+++ b/html/design/basics.html
@@ -22,6 +22,9 @@
+
+
+
@@ -115,7 +118,7 @@ Basics