haidubogdan / netbeans-php-blade-plugin

Netbeans 18+ module plugin for php blade template files
Apache License 2.0
26 stars 4 forks source link

Slash comments in embeded style tags display parser error #63

Closed haidubogdan closed 2 months ago

haidubogdan commented 2 months ago
<style>
    //dsdsds ?
</style>

image

parallels999 commented 2 months ago

https://developer.mozilla.org/en-US/docs/Web/CSS/Comments

I thought you could only comment with /* */

<style>
    // display: none;
    /* display: none; */
    display: none;
</style>

UPDATE:

The /* */ comment syntax is used for both single and multiline comments. There is no other way to specify comments ...

haidubogdan commented 2 months ago

Ah yes : )) I thought it's more permissive.