Chore: Docs: Fix missing closing tag (#10730)

The video element is not a void element. As such, if it's missing a closing tag, it's considered to be unclosed.
See https://developer.mozilla.org/en-US/docs/Glossary/Void_element#self-closing_tags.
pull/10735/head^2
Henry Heino 2024-07-11 10:16:33 -07:00 committed by GitHub
parent 2ab9702e32
commit 4de0236194
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ Here, the "insert drawing" button is part of the main editor toolbar:
Double-click on an existing drawing to edit it:
<figure>
<video src="/images/draw/edit-existing-drawing-on-desktop.mp4" alt="" controls="controls" width="90%"/>
<video src="/images/draw/edit-existing-drawing-on-desktop.mp4" alt="" controls="controls" width="90%"></video>
<figcaption>In the Rich Text editor, double-clicking allows editing an existing drawing. This also works in the markdown viewer.</figcaption>
</figure>