Skip to content

Commit

Permalink
Missing language tags for forced code blocks
Browse files Browse the repository at this point in the history
  • Loading branch information
silasb committed Jan 29, 2012
1 parent aee0036 commit 9b4aa30
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ Let's compare two examples of HTML templates. One is implemented using the popul

**Handlebars.js:**

```
```html
<li class="photo">
<h2>{{caption}}</h2>
<img class="source" src="{{src}}"/>
Expand All @@ -243,7 +243,7 @@ Let's compare two examples of HTML templates. One is implemented using the popul

**Underscore.js Microtemplates:**

```
```html
<li class="photo">
<h2><%= caption %></h2>
<img class="source" src="<%= src %>"/>
Expand Down Expand Up @@ -3003,22 +3003,22 @@ Let's review [SpecRunner.html](https://github.com/pivotal/jasmine/blob/master/li
It first includes both Jasmine and the necessary CSS required for reporting:
```
```html
<link rel="stylesheet" type="text/css" href="lib/jasmine-1.1.0.rc1/jasmine.css"/>
<script type="text/javascript" src="lib/jasmine-1.1.0.rc1/jasmine.js"></script>
<script type="text/javascript" src="lib/jasmine-1.1.0.rc1/jasmine-html.js"></script>
```
Next, some sample tests are included:
```
```html
<script type="text/javascript" src="spec/SpecHelper.js"></script>
<script type="text/javascript" src="spec/PlayerSpec.js"></script>
```
And finally the sources being tested:
```
```html
<script type="text/javascript" src="src/Player.js"></script>
<script type="text/javascript" src="src/Song.js"></script>
```
Expand All @@ -3038,7 +3038,7 @@ The complexity of Backbone models can vary greatly depending on what your applic
First, we begin our suite for model testing using ```describe()```:
```
```javascript
describe('Tests for Todo', function() {
```
Expand Down Expand Up @@ -3423,7 +3423,7 @@ Once these specs are run, only the second one ('produces the correct HTML') fail
**Note:** For the purposes of maintaining readability, all template examples in this section will use a minimal version of the following Todo view template. As it's relatively trivial to expand this, please feel free to refer to this sample if needed:
```
```html
<div class="todo <%= done ? 'done' : '' %>">
<div class="display">
<input class="check" type="checkbox" <%= done ? 'checked="checked"' : '' %> />
Expand Down

0 comments on commit 9b4aa30

Please sign in to comment.