When adding a caption to an image, the caption fails to meet [RGAA criterion 1.9.1](https://accessibilite.numerique.gouv.fr/methode/criteres-et-tests/#1.9). The caption isn't properly associated with the captioned image. Expected : using the `<figure>` element to wrap both `<img>` and it's caption Actual : ``` <div class="bn-file-block-content-wrapper" style="width: fit-content;"> <div class="bn-visual-media-wrapper"> <img class="bn-visual-media" src="foo" alt="bar.jpg" contenteditable="false" draggable="false"> </div> <p class="bn-file-caption">image caption</p> </div> ```