Skip to content

Commit

Permalink
do not include <meta> content-type tag, we only include the favicon tags
Browse files Browse the repository at this point in the history
  • Loading branch information
frederikbosch committed Aug 1, 2023
1 parent 6c86b50 commit fd5a420
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions src/FullPackageGenerator.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,6 @@ public function package(): \Generator
$html = $document->createElement('html');
$head = $document->createElement('head');

$meta = $document->createElement('meta');
$meta->setAttribute('http-equiv', 'Content-Type');
$meta->setAttribute('content', 'text/html; charset=utf-8');
$head->appendChild($meta);

foreach ($this->headTags($document) as $tag) {
$head->appendChild($tag);
}
Expand Down

0 comments on commit fd5a420

Please sign in to comment.