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
Hello,
at first thanks for the great plugin you've put together!!
I found an issue in StylesheetTagRenderer.php. Currently in that file we have:
return $this->getTagRenderer()->render( 'style', $formatter->renderLines([ $name.$formatter->renderSeparator().'{', $formatter->renderIndentation($formatter->renderLines($tagStylesheets, true, false)), '}', ], !empty($tagStylesheets), false), array_merge(['type' => 'test/css'], $attributes), $newLine );
But it needs to be
return $this->getTagRenderer()->render( 'style', $formatter->renderLines([ $name.$formatter->renderSeparator().'{', $formatter->renderIndentation($formatter->renderLines($tagStylesheets, true, false)), '}', ], !empty($tagStylesheets), false), array_merge(['type' => 'text/css'], $attributes), $newLine );
The type of the style element is 'type' => 'test/css' but it needs to be 'type' => 'text/css'.
'type' => 'test/css'
'type' => 'text/css'
Thanks in advance for fixing this ;-)
Bye Defcon0
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hello,
at first thanks for the great plugin you've put together!!
I found an issue in StylesheetTagRenderer.php. Currently in that file we have:
But it needs to be
The type of the style element is
'type' => 'test/css'
but it needs to be'type' => 'text/css'
.Thanks in advance for fixing this ;-)
Bye Defcon0
The text was updated successfully, but these errors were encountered: