AnimGraphLab Alpha
Nodes Metadata

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>
  </metadata>
  <defs>...</defs>
  <!-- Content -->
</svg>

Parameters

ParameterDescription
TitleShort, human-readable title of the SVG.
DescriptionDetailed description for accessibility (alt text).
AuthorCreator of the file.
LicenseLicense information.
VersionVersion number of the file.

See also