We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
The following snippet is present in several files and should be merged into a trait
if (isset($document->matter['title'])) { $this->title = $document->matter['title']; } else { $this->title = $this->findTitleTag($document->body) ?? Hyde::titleFromSlug($this->slug); }