mirror of
https://github.com/Ionaru/easy-markdown-editor
synced 2025-07-01 23:24:28 -06:00
change single quotes to double quotes
This commit is contained in:
parent
f891cfb787
commit
c92f4e3bd3
@ -132,7 +132,7 @@ var simplemde = new SimpleMDE({
|
||||
strikethrough: false,
|
||||
underscoresBreakWords: true,
|
||||
},
|
||||
placeholder: 'Type here...',
|
||||
placeholder: "Type here...",
|
||||
previewRender: function(plainText) {
|
||||
return customMarkdownParser(plainText); // Returns HTML from a custom parser
|
||||
},
|
||||
|
@ -1049,7 +1049,7 @@ SimpleMDE.prototype.render = function(el) {
|
||||
extraKeys: keyMaps,
|
||||
lineWrapping: (options.lineWrapping === false) ? false : true,
|
||||
allowDropFileTypes: ["text/plain"],
|
||||
placeholder: options.placeholder || el.getAttribute('placeholder') || ''
|
||||
placeholder: options.placeholder || el.getAttribute("placeholder") || ""
|
||||
});
|
||||
|
||||
if(options.toolbar !== false) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user