diff --git a/README.md b/README.md index e3111e7..64ee943 100644 --- a/README.md +++ b/README.md @@ -9,15 +9,11 @@ A drop-in JavaScript textarea replacement for writing beautiful and understandab WYSIWYG editors that produce HTML are often complex and buggy. Markdown solves this problem in many ways, plus Markdown can be rendered natively on more platforms than HTML. However, Markdown is not a syntax that an average user will be familiar with, nor is it visually clear while editing. In otherwords, for an unfamiliar user, the syntax they write will make little sense until they click the preview button. SimpleMDE has been designed to bridge this gap for non-technical users who are less familiar with or just learning Markdown syntax. ## Quick start - -### Installation - -#### NPM SimpleMDE is available on [npm](https://www.npmjs.com/package/simplemde). ``` npm install simplemde --save ``` -#### jsDelivery + SimpleMDE is also available on [jsDelivr](http://www.jsdelivr.com/#!simplemde). *Please note, jsDelivr may take a few days to update to the latest release.* ```HTML @@ -25,13 +21,6 @@ SimpleMDE is also available on [jsDelivr](http://www.jsdelivr.com/#!simplemde). ``` -#### Bower -SimpleMDE is also available via [Bower](http://bower.io/). -```console -bower install simplemde-markdown-editor -``` -### Usage - And then load SimpleMDE on the first textarea on a page ```HTML @@ -121,7 +110,7 @@ var simplemde = new SimpleMDE({ setTimeout(function(){ preview.innerHTML = customMarkdownParser(plainText); }, 250); - + return "Loading..."; } renderingConfig: { diff --git a/bower.json b/bower.json deleted file mode 100644 index 96c59d1..0000000 --- a/bower.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "name": "simplemde-markdown-editor", - "version": "1.7.4", - "homepage": "https://github.com/NextStepWebs/simplemde-markdown-editor", - "authors": [ - "Wes Cossik " - ], - "description": "A simple, beautiful, and embeddable JavaScript markdown editor.", - "main": ["dist/simplemde.min.js", "dist/simplemde.min.css"], - "moduleType": [ - "globals" - ], - "keywords": [ - "wysiwyg", - "markdown", - "editor", - "js" - ], - "license": "MIT", - "ignore": [ - "**/.*", - "node_modules", - "bower_components", - "test", - "tests" - ] -}