From d1da791320a5a8fb231c9b22cc4161a77fdf5bfd Mon Sep 17 00:00:00 2001 From: Wes Cossick Date: Fri, 26 Jun 2015 12:36:31 -0500 Subject: [PATCH] Remove "Short description of image" It's easier if users don't even know that's a possibility, honestly. --- source files/markdownify.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source files/markdownify.js b/source files/markdownify.js index 22181f1..4560574 100644 --- a/source files/markdownify.js +++ b/source files/markdownify.js @@ -189,7 +189,7 @@ function drawLink(editor) { function drawImage(editor) { var cm = editor.codemirror; var stat = getState(cm); - _replaceSelection(cm, stat.image, '![Short description of image](http://', ')'); + _replaceSelection(cm, stat.image, '![](http://', ')'); }