From 5662766c1f6bc6170c5b93cfc4a712ae934474d3 Mon Sep 17 00:00:00 2001 From: Wes Cossick Date: Tue, 20 Oct 2015 10:59:35 -0500 Subject: [PATCH] Note new ways to install, tweak format and wording --- README.md | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 64ee943..fc4596b 100644 --- a/README.md +++ b/README.md @@ -8,20 +8,28 @@ A drop-in JavaScript textarea replacement for writing beautiful and understandab ## Why not a WYSIWYG editor or pure Markdown? 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 -SimpleMDE is available on [npm](https://www.npmjs.com/package/simplemde). +## Install + +Via [npm](https://www.npmjs.com/package/simplemde). ``` npm install simplemde --save ``` -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.* +Via [bower](https://www.bower.io). +``` +bower install simplemde --save +``` + +Via [jsDelivr](http://www.jsdelivr.com/#!simplemde). *Please note, jsDelivr may take a few days to update to the latest release.* ```HTML ``` -And then load SimpleMDE on the first textarea on a page +## Quick start + +After installing, load SimpleMDE on the first textarea on a page ```HTML ``` -#### Use a specific textarea +#### How to use a specific textarea Pure JavaScript method