/**
* Add a link to the output.
*
* @param string $key The name of the metadata key
* @param string $value The value
*
* @return $this
*
* @since 4.0.0
*/
public function addMeta($key, $value)
{
$this->document->addMeta($key, $value);
return $this;
}