AnimGraphLab Beta
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
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
Custom fields
Custom metadata tags

See also