// ----------------------------------------------------------------------------
// markItUp!
// ----------------------------------------------------------------------------
// Copyright (C) 2008 Jay Salvat
// http://markitup.jaysalvat.com/
// ----------------------------------------------------------------------------
// Html tags
// http://en.wikipedia.org/wiki/html
// ----------------------------------------------------------------------------
// Basic set. Feel free to add more tags
// ----------------------------------------------------------------------------
mySettings = {
onShiftEnter:  	{keepDefault:false, replaceWith:'<br />\n'},
onCtrlEnter:  	{keepDefault:false, openWith:'\n<p>', closeWith:'</p>'},
onTab:    		{keepDefault:false, replaceWith:'    '},
markupSet:  [
        {name:'&Uuml;berschrift 5', key:'5', openWith:'<h5(!( class="[![Class]!]")!)>', closeWith:'</h5>', placeHolder:'Your title here...' },
        {name:'Absatz', openWith:'<p(!( class="[![Class]!]")!)>', closeWith:'</p>'  },
        {name:'fett', key:'B', openWith:'<strong>', closeWith:'</strong>' },
        {name:'kursiv', key:'I', openWith:'<em>', closeWith:'</em>'  },
        {name:'Liste', openWith:'<ul>\n', closeWith:'</ul>\n' },
        {name:'Listenpunkt', openWith:'<li>', closeWith:'</li>' },
        {name:'Link', key:'L', openWith:'<a href="[![Link:!:http://]!]"(!( title="[![Title]!]")!)>', closeWith:'</a>', placeHolder:'Your text to link...' },
        {name:'Clean', replaceWith:function(h) { return h.selection.replace(/<(.*?)>/g, "") } },
        {name:'Vorschau', call:'preview', className:'preview' }
    ]

}