Skip to content

Commit 61031aa

Browse files
authored
Fixed HTML code blocks
1 parent 39c6e32 commit 61031aa

File tree

1 file changed

+3
-7
lines changed

1 file changed

+3
-7
lines changed

elixir.md

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -214,9 +214,7 @@ This will append a unique hash to the filename, allowing for cache-busting. For
214214

215215
Within your views, you may use the `elixir()` function to load the appropriately hashed asset. Here's an example:
216216

217-
```html
218-
<link rel="stylesheet" href="{{ elixir("css/all.css") }}">
219-
```
217+
<link rel="stylesheet" href="{{ elixir("css/all.css") }}">
220218

221219
Behind the scenes, the `elixir()` function will determine the name of the hashed file that should be included. Don't you feel the weight lifting off your shoulders already?
222220

@@ -228,10 +226,8 @@ elixir(function(mix) {
228226
});
229227
```
230228

231-
```html
232-
<link rel="stylesheet" href="{{ elixir("css/all.css") }}">
233-
<script src="{{ elixir("js/app.js") }}"></script>
234-
```
229+
<link rel="stylesheet" href="{{ elixir("css/all.css") }}">
230+
<script src="{{ elixir("js/app.js") }}"></script>
235231

236232
#### Copy a File to a New Location
237233

0 commit comments

Comments
 (0)