Skip to content

Instantly share code, notes, and snippets.

@ericlbarnes
Created April 5, 2012 12:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ericlbarnes/2310474 to your computer and use it in GitHub Desktop.
Save ericlbarnes/2310474 to your computer and use it in GitHub Desktop.
blade comments test
<!DOCTYPE HTML>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<title></title>
</head>
<body>
<div class="first"></div>
{{--
<div class="second"></div>
<div class="third"></div>
--}}
{{-- this is my single line comment
<div class="test"></div>
</body>
</html>
<!DOCTYPE HTML>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<title></title>
</head>
<body>
{{-- this is my single line comment
<div class="first"></div>
{{--
this is my multiline one
<div class="second"></div>
<div class="third"></div>
--}}
</body>
</html>
<!DOCTYPE HTML>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<title></title>
</head>
<body>
<div class="first"></div>
<?php /* -
<div class="second"></div>
<div class="third"></div>
- */ ?>
<?php // - this is my single line comment ?>
</body>
</html>
<!DOCTYPE HTML>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<title></title>
</head>
<body>
<?php // - this is my single line comment ?> <div class="first"></div>
<?php /* -
this is my multiline one
<div class="second"></div>
<div class="third"></div>
- */ ?>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment