Would it be feasible to add title tags to previews? ([[ https://developer.mozilla.org/en-US/docs/Web/SVG/Element/title |svg docs by Mozilla Contributors]])
That is a tag, that gives a short-description to svg file elements. It can be seen on mouse hover on most browsers.
[[ https://commons.wikimedia.org/wiki/File:BlankMap-World.svg | Example: ]] (tags show when native svg file is opened)
| **On mouse hover:** | |
| {F31784178} | {F31784179} |
| [[ https://upload.wikimedia.org/wikipedia/commons/thumb/4/4d/BlankMap-World.svg/800px-BlankMap-World.svg.png | Mediaviewer preview ]] | [[ https://upload.wikimedia.org/wikipedia/commons/4/4d/BlankMap-World.svg | Native svg file ]] |
This is additional information that can be useful for readers, but isn't available to them. It is really useful on maps and other files.
Note: I am talking about the first code variant, as the second isn't as widely supported.
```
<path>
<title>A file.</title>
</path>
```
```
<path title="A file.">
</path>
```