Set the language in Blaze's readme's markdown

This commit is contained in:
Slava Kim
2014-12-21 18:00:13 -08:00
parent 00a7da3dd0
commit fcf8f6616d

View File

@@ -40,7 +40,7 @@ Here are two Spacebars templates from an example app called
"Leaderboard" which displays a sorted list of top players and their
scores:
```
```html
<template name="leaderboard">
<ol class="leaderboard">
{{#each players}}
@@ -62,7 +62,7 @@ the data context (the current player), while `players` and `selected`
refer to helper functions. Helper functions and event handlers are defined
in JavaScript:
```
```javascript
Template.leaderboard.helpers({
players: function () {
// Perform a reactive database query against minimongo