Skip to content

Commit

Permalink
Merge fe1403f into dd42887
Browse files Browse the repository at this point in the history
  • Loading branch information
Raibaz committed Oct 14, 2015
2 parents dd42887 + fe1403f commit ac74256
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion lib/blocktypes/css.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ function css(content, block, blockLine, blockContent, filepath) {
return content.split(blockLine).join(replacement);
}

return content.replace(blockLine, block.indent + '<link rel="stylesheet" href="' + block.asset + '">');
return content.replace(blockLine, block.indent + '<link rel="stylesheet" href="' + block.asset + '"/>');
}

function obtainStyles(block, html, baseDir) {
Expand Down
2 changes: 1 addition & 1 deletion test/expected/conditional_ie/conditional_ie.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<title>Conditional IE statement</title>
<!--[if lte IE 8]>
<script src="ie8script.js"></script>
<link rel="stylesheet" href="ie8.min.css">
<link rel="stylesheet" href="ie8.min.css"/>
<![endif]-->
</head>
<body>
Expand Down
2 changes: 1 addition & 1 deletion test/expected/inline/inline.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Inline CSS</title>

<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="styles.css"/>

<style>
html {
Expand Down
2 changes: 1 addition & 1 deletion test/expected/recursive/recursive.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Recursive process included files</title>

<link rel="stylesheet" href="styles.min.css">
<link rel="stylesheet" href="styles.min.css"/>

<script src="script.min.js"></script>
</head>
Expand Down

0 comments on commit ac74256

Please sign in to comment.