This describes the content as a whole.
This is the rule for single link css comments.
/* This is cool */
.css {
display: block;
}
This is the rule for single link html comments.
<!-- Single linke html comment -->
<h1>This works right?</h1>
This is the rule for single link javascript comments.
// This is a single link javascript comment
var line = "cool";
This is the rule for single link php comments.
<?php
// This is a single line quote.
?>
<?php echo $variable; ?>
This is the rule for single link sass comments.
/* Single line sass comment*/
.block {
@extend .cool;
}