Skip to content

Commit 56705bf

Browse files
committed
Tweak wording in README
1 parent 8618543 commit 56705bf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ simplemde.value("This text will appear in the editor");
9393
- **underscoresBreakWords**: If set to `true`, let underscores be a delimiter for separating words. Defaults to `false`.
9494
- **placeholder**: Custom placeholder that should be displayed
9595
- **previewRender**: Custom function for parsing the plaintext Markdown and returning HTML. Used when user previews.
96-
- **promptURLs**: If set to `true`, a prompt window come if you insert link or image. Defaults to `false`.
96+
- **promptURLs**: If set to `true`, a JS alert window appears asking for the link or image URL. Defaults to `false`.
9797
- **renderingConfig**: Adjust settings for parsing the Markdown during previewing (not editing).
9898
- **singleLineBreaks**: If set to `false`, disable parsing GFM single line breaks. Defaults to `true`.
9999
- **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:<br>`<script src="https://cdn.jsdelivr.net/highlight.js/latest/highlight.min.js"></script>`<br>`<link rel="stylesheet" href="https://cdn.jsdelivr.net/highlight.js/latest/styles/github.min.css">`
@@ -146,7 +146,7 @@ var simplemde = new SimpleMDE({
146146

147147
return "Loading...";
148148
},
149-
promptURLs: true, // Show a prompt window to insert URL for link or image
149+
promptURLs: true,
150150
renderingConfig: {
151151
singleLineBreaks: false,
152152
codeSyntaxHighlighting: true,

0 commit comments

Comments
 (0)