element instanceof \PhpOffice\PhpWord\Element\Footnote) {
return;
}
$noteId = count($this->parentWriter->getNotes()) + 1;
$noteMark = $this->noteType . '-' . $this->element->getRelationId();
$content = "{$noteId}";
$this->parentWriter->addNote($noteId, $noteMark);
return $content;
}
}