Indenting;

Add horizontalRule to the replaceTexts option
This commit is contained in:
Alex Canessa 2015-11-02 12:06:51 +00:00
parent 07196a532f
commit f8fc4d2b12

View File

@ -286,8 +286,8 @@ function drawImage(editor) {
function drawHorizontalRule(editor) { function drawHorizontalRule(editor) {
var cm = editor.codemirror; var cm = editor.codemirror;
var stat = getState(cm); var stat = getState(cm);
_replaceSelection(cm, stat.image, "", "\n\n-----\n\n"); var options = editor.options;
} _replaceSelection(cm, stat.image, options.replaceTexts.HorizontalRule);}
/** /**
@ -792,7 +792,8 @@ var toolbarBuiltInButtons = {
var replaceTexts = { var replaceTexts = {
link: ["[", "](http://)"], link: ["[", "](http://)"],
image: ["![](http://", ")"] image: ["![](http://", ")"],
horizontalRule: ["", "\n\n-----\n\n"]
}; };
/** /**