We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I think you should add this function as well
public function charset($set = "utf-8") { $tag = $this->createTag('meta', ['charset' => $set]); $this->addToTagsGroup('meta', 'charset', $tag); return $tag; }
The text was updated successfully, but these errors were encountered:
How does it work?
Sorry, something went wrong.
public function charset($set = "utf-8") { $tag = $this->createTag('meta', ['charset' => $set]); $this->addToTagsGroup('meta', 'charset', $tag); return $tag; } How does it work?
$tags = new MetaTags; $tags->title('My Awesome Site'); $tags->charset(); // default value = utf-8 $tags->render();
or
$tags = new MetaTags; $tags->title('My Awesome Site'); $tags->charset('iso-8859-3'); // is Latin 3 Alphabet (ISO) $tags->render();
But you need to add this function manually. Because it has not been added to the library yet.
No branches or pull requests
I think you should add this function as well
The text was updated successfully, but these errors were encountered: