Metadata node allows to inject non-visual information into exported SVG files. May be used for accessibility, SEO, copyright purposes.
It inserts standard SVG metadata tags like <title>, <desc>, and custom inside <metadata> block.
Warning: It must be connected before Artboard and Export nodes.
Example output
<svg xmlns="http://www.w3.org/2000/svg" ...>
<title>Some text</title>
<desc>Some long text about text</desc>
<metadata>
<author>AnimGraphLab</author>
<license>MIT</license>
<version>1.0.0</version>
<link>https://animgraphlab.com</link>
</metadata>
<defs>...</defs>
<!-- Content -->
</svg>Parameters
| Parameter | Description |
|---|---|
Title | Short, human-readable title of the SVG |
Description | Detailed description for accessibility (alt text) |
Author | Creator of the file |
License | License information |
Version | Version number of the file |
Link | URL to add as a link for the SVG |
Custom fields | Custom metadata tags |