From 005f251c69535c9a0968732c36ae49d4e64bdb7d Mon Sep 17 00:00:00 2001 From: Guillermo Rauch Date: Mon, 13 Jun 2011 03:28:29 -0300 Subject: [PATCH] Trying out GH highlighting. --- Readme.md | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/Readme.md b/Readme.md index 870860ca81..858a31e9ae 100644 --- a/Readme.md +++ b/Readme.md @@ -23,7 +23,7 @@ var io = require('socket.io'); Next, attach it to a HTTP/HTTPS server. If you're using the fantastic `express` web framework: -```html +```js var app = express.createServer(); , io = io.listen(app); @@ -36,13 +36,15 @@ io.sockets.on('connection', function (socket) { Finally, load it from the client side code: - - +```html + + +``` For more thorough examples, look at the `examples/` directory.