diff --git a/src/doc/converters/index.rst b/src/doc/converters/index.rst
index 943ff1310649aaf34738adb0d1b5e90f5a3079cc..38fc11335a2640f645e9b4e093690d1ffa7cd07f 100644
--- a/src/doc/converters/index.rst
+++ b/src/doc/converters/index.rst
@@ -7,6 +7,8 @@ existing StructureElements, Converters create a tree of StructureElements.
 
 .. image:: ../img/converter.png
   :height: 170
+  :alt: Converters are Python classes that tell the crawler how to
+        interprete StructureElements.
 
 Each StructureElement in the tree has a set of properties, organized as
 key-value pairs.
diff --git a/src/doc/converters/standard_converters.rst b/src/doc/converters/standard_converters.rst
index 7eb8de681eb4c026e3175693ada828f3ca6ce96f..3dc3c882e76e10706d030ba0695d498631bf7b28 100644
--- a/src/doc/converters/standard_converters.rst
+++ b/src/doc/converters/standard_converters.rst
@@ -182,6 +182,8 @@ with value "Silvia Scientist":
 
 .. image:: ../img/properties-from-dict-records-author.png
   :height: 210
+  :alt: A Record "New Name" and an author Record with full_name
+        "Silvia Scientist" are generated and filled automatically.
 
 Note how the different dictionary keys are handled differently
 depending on their types: scalar and list values are understood
@@ -216,6 +218,8 @@ property:
 
 .. image:: ../img/properties-from-dict-records-person.png
   :height: 200
+  :alt: A new Person Record is created which is referenced as an
+        author.
 
 For the time being, only the parents of the referenced record can be
 set via this option. More complicated treatments can be implemented