From 56705bfd20bee713d2dad88ed03b68066dad9f4f Mon Sep 17 00:00:00 2001 From: Wes Cossick Date: Tue, 26 Jan 2016 10:43:25 -0600 Subject: [PATCH] Tweak wording in README --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e33859f..5c66aff 100644 --- a/README.md +++ b/README.md @@ -93,7 +93,7 @@ simplemde.value("This text will appear in the editor"); - **underscoresBreakWords**: If set to `true`, let underscores be a delimiter for separating words. Defaults to `false`. - **placeholder**: Custom placeholder that should be displayed - **previewRender**: Custom function for parsing the plaintext Markdown and returning HTML. Used when user previews. -- **promptURLs**: If set to `true`, a prompt window come if you insert link or image. Defaults to `false`. +- **promptURLs**: If set to `true`, a JS alert window appears asking for the link or image URL. Defaults to `false`. - **renderingConfig**: Adjust settings for parsing the Markdown during previewing (not editing). - **singleLineBreaks**: If set to `false`, disable parsing GFM single line breaks. Defaults to `true`. - **codeSyntaxHighlighting**: If set to `true`, will highlight using [highlight.js](https://github.com/isagalaev/highlight.js). Defaults to `false`. To use this feature you must include highlight.js on your page. For example, include the script and the CSS files like:
``
`` @@ -146,7 +146,7 @@ var simplemde = new SimpleMDE({ return "Loading..."; }, - promptURLs: true, // Show a prompt window to insert URL for link or image + promptURLs: true, renderingConfig: { singleLineBreaks: false, codeSyntaxHighlighting: true,