// ----------------------------------------------------------------------------
// markItUp!
// ----------------------------------------------------------------------------
// Copyright (C) 2008 Jay Salvat
// http://markitup.jaysalvat.com/
// ----------------------------------------------------------------------------
myTextileSettings = {
    nameSpace:           "bbcode", // Useful to prevent multi-instances CSS conflict
    onShiftEnter:        {keepDefault:false, replaceWith:'\n\n'},
    onTab:               {keepDefault:false, replaceWith:'    '},
    resizeHandle:        true,
    markupSet: [
        {name:'Bold', key:'B', closeWith:'[/b]', openWith:'[b]'},
        {name:'Italic', key:'I', closeWith:'[/i]', openWith:'[i]'},
        {name:'Underline', key:'U', closeWith:'[/u]', openWith:'[u]'},
        {separator:'---------------' },
        {name:'Link', openWith:'[url=[![Url]!]]', closeWith:'[/url]', placeHolder:'Your text to link here...'},
        {separator:'---------------' },
        {name:'Quotes', openWith:'[quote]', closeWith:'[/quote]'},
        {name:'Code', openWith:'[code=[![Language]!]]', closeWith:'[/code]'},
        {separator:'---------------' },
        {name:'Unordered list', openWith:'[list]', closeWith:'[/list]'},
        {name:'List', openWith:'[*]'},
    ]
}

$(document).ready(function() {
    $("textarea").removeClass('vLargeTextField').markItUp(myTextileSettings);
});

