From ecdd68a4a30800a28d6eec39211d0812e48432cf Mon Sep 17 00:00:00 2001 From: Titus Date: Wed, 13 Jun 2012 23:35:24 -0600 Subject: [PATCH] Fixed markdown syntax for code examples --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 378b59d..ed79b50 100644 --- a/README.md +++ b/README.md @@ -195,11 +195,11 @@ Tests --------------------------- A suite of tests is available which require node.js. Once node is installed, run the following command from the project root to install the development dependencies: - npm install --dev + npm install --dev Once installed the tests can be run from the project root using: - mocha test/run.js + mocha test/run.js New test cases can easily be added. Create a markdown file (ending in `.md`) which contains the markdown to test. Create a `.html` file of the exact same name. It will automatically be tested when the tests are executed with `mocha`.