// ----------------------------------------------------------------------------
// markItUp!
// ----------------------------------------------------------------------------
// Copyright (C) 2008 Jay Salvat
// http://markitup.jaysalvat.com/
// ----------------------------------------------------------------------------
mySettings = {
    nameSpace:       "xbbcode", // Useful to prevent multi-instances CSS conflict
	previewParserPath:	'', // path to your XBBCode parser
	onShiftEnter:	{keepDefault:false, replaceWith:'[br /]\n'},
	onCtrlEnter:	{keepDefault:false, openWith:'\n[p]', closeWith:'[/p]\n'},
	onTab:			{keepDefault:false, openWith:'	 '},
	markupSet: [
		/*{name:'Heading 1', key:'1', openWith:'[h1(!( class="[![Class]!]")!)]', closeWith:'[/h1]', placeHolder:'Your title here...' },
		{name:'Heading 2', key:'2', openWith:'[h2(!( class="[![Class]!]")!)]', closeWith:'[/h2]', placeHolder:'Your title here...' },
		{name:'Heading 3', key:'3', openWith:'[h3(!( class="[![Class]!]")!)]', closeWith:'[/h3]', placeHolder:'Your title here...' },
		{name:'Heading 4', key:'4', openWith:'[h4(!( class="[![Class]!]")!)]', closeWith:'[/h4]', placeHolder:'Your title here...' },
		{name:'Heading 5', key:'5', openWith:'[h5(!( class="[![Class]!]")!)]', closeWith:'[/h5]', placeHolder:'Your title here...' },
		{name:'Heading 6', key:'6', openWith:'[h6(!( class="[![Class]!]")!)]', closeWith:'[/h6]', placeHolder:'Your title here...' },
		{name:'Parrafo', openWith:'[p(!( class="[![Class]!]")!)]', closeWith:'[/p]' },
		{separator:'---------------' },*/
		{name:'Negrita', key:'B', openWith:'(!([strong]|!|[b])!)', closeWith:'(!([/strong]|!|[/b])!)' },
		{name:'Italica', key:'I', openWith:'(!([em]|!|[i])!)', closeWith:'(!([/em]|!|[/i])!)' },
		{name:'Tachar', key:'S', openWith:'[del]', closeWith:'[/del]' },
		{separator:'---------------' },
		{name:'Lista items', openWith:'[ul]\n', closeWith:'[/ul]\n' },
		{name:'Lista numerada', openWith:'[ol]\n', closeWith:'[/ol]\n' },
		{name:'Elemento de lista', openWith:'[li]', closeWith:'[/li]' },
		{separator:'---------------' },
		{name:'Imagen', key:'P', replaceWith:'[img src="[![URL ejemplo -> http://www.ypbuenosaires.com.ar/images/logo_yp.png:!:http://]!]" alt="[![Texto alternativo]!]" /]' },
		{name:'Link', key:'L', openWith:'[a href="[![Link:!:http://]!]"(!( title="[![Titulo]!]")!)]', closeWith:'[/a]', placeHolder:'Ingresa el texto de tu link...' },
		{name:'YouTube', key:'Y', replaceWith:'[youtube][![URL ejemplo -> http://www.youtube.com/watch?v=DZ1waADYikw:!:]!][youtube]' },
		{name:'Texto citado', key:'Q', openWith:'[blockquote]', closeWith:'[/blockquote]', placeHolder:'Ingresa el texto de tu cita...' },
		{separator:'---------------' },
		{name:'Limpiar codigo', className:'clean', replaceWith:function(markitup) { return markitup.selection.replace(/\[(.*?)\]/g, "") } },
		/*{name:'Preview', className:'preview', call:'preview' }*/
	]
}
