From 15e40b02bd761b6b8089a5898869addcac7c50f3 Mon Sep 17 00:00:00 2001 From: Tj Holowaychuk Date: Tue, 28 Dec 2010 10:00:14 -0800 Subject: [PATCH] Changed name to discount (npm) --- .npmignore | 1 + Readme.md | 12 ++---------- package.json | 2 +- 3 files changed, 4 insertions(+), 11 deletions(-) create mode 100644 .npmignore diff --git a/.npmignore b/.npmignore new file mode 100644 index 0000000..c795b05 --- /dev/null +++ b/.npmignore @@ -0,0 +1 @@ +build \ No newline at end of file diff --git a/Readme.md b/Readme.md index 76d106e..c010db0 100644 --- a/Readme.md +++ b/Readme.md @@ -9,19 +9,11 @@ You will need to install [Discount](http://github.com/Orc/discount) from source, or using a package management tool such as [homebrew](http://github.com/mxcl/homebrew), or apt-get. -When using the [Kiwi](http://github.com/visionmedia/kiwi) package manager for node run: - - $ kiwi install markdown - -Otherwise you will need to update the git submodules and run: - - $ make - -In order to generate _build/markdown.node_. + $ npm install discount ## Usage - var md = require('markdown') + var md = require('discount'); md.parse('markdown is *awesome*') // => "

markdown is awesome

" diff --git a/package.json b/package.json index 78b7e90..6a14ead 100644 --- a/package.json +++ b/package.json @@ -1,4 +1,4 @@ -{ "name": "markdown" +{ "name": "discount" , "description": "C markdown implementation using discount" , "tags": ["markdown", "md", "parser", "native"] , "author" : "TJ Holowaychuk "