I've implemented markitup to handle users entering markdown text. I want to replace the default image insert command with a nice jquery routine that lets the user browse for an image. I'm able to edit the set.js file to call my javascript routine that brings up the file browser:

{name: 'Picture', key: 'P', call: 'insertImage'},

My insertImage function looks like this:

function insertImage()
{
    // launch Image Browser
}

When the user selects an image in the image browser, another javascript function is called:

function addImage(imageurl,alttext)
{
    var imagetext = "!["+alttext+"]("+imageurl+")";
    // how do I insert imageurl into markitup??
}

I need help implementing addImage.

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

You just need to do this:

function addImage(imageurl,alttext)
{
    var imagetext = "!["+alttext+"]("+imageurl+")";
    $.markItUp({ replaceWith: imagetext });
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.