From f9b7a984b2cd60580a45fca0884ffa2e20414125 Mon Sep 17 00:00:00 2001 From: Wes Cossick Date: Tue, 25 Apr 2017 15:39:53 -0500 Subject: [PATCH] Document new `promptTexts` option in README --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/README.md b/README.md index e443a37..7974b73 100644 --- a/README.md +++ b/README.md @@ -96,6 +96,9 @@ simplemde.value("This text will appear in the editor"); - **placeholder**: If set, displays a custom placeholder message. - **previewRender**: Custom function for parsing the plaintext Markdown and returning HTML. Used when user previews. - **promptURLs**: If set to `true`, a JS alert window appears asking for the link or image URL. Defaults to `false`. +- **promptTexts**: Customize the text used to prompt for URLs. + - **image**: The text to use when prompting for an image's URL. Defaults to `URL of the image:`. + - **link**: The text to use when prompting for a link's URL. Defaults to `URL for the link:`. - **renderingConfig**: Adjust settings for parsing the Markdown during previewing (not editing). - **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 or pass in using the `hljs` option. For example, include the script and the CSS files like:
``
`` - **hljs**: An injectible instance of [highlight.js](https://github.com/isagalaev/highlight.js). If you don't want to rely on the global namespace (`window.hljs`), you can provide an instance here. Defaults to `undefined`. @@ -155,6 +158,10 @@ var simplemde = new SimpleMDE({ return "Loading..."; }, promptURLs: true, + promptTexts: { + image: "Custom prompt for URL:", + link: "Custom prompt for URL:", + }, renderingConfig: { singleLineBreaks: false, codeSyntaxHighlighting: true,