// ----------------------------------------------------------------------------
// markItUp!
// ----------------------------------------------------------------------------
// Copyright (C) 2008 Jay Salvat
// http://markitup.jaysalvat.com/
// ----------------------------------------------------------------------------
// BBCode tags example
// http://en.wikipedia.org/wiki/Bbcode
// ----------------------------------------------------------------------------
// Feel free to add more tags
// ----------------------------------------------------------------------------
mySettings = {
	previewParserPath:	'', // path to your BBCode parser
	markupSet: [
			{separator:'---------------' },
		{name:'Bold', key:'B', openWith:'[b]', closeWith:'[/b]'},
		{name:'Italic', key:'I', openWith:'[i]', closeWith:'[/i]'},
		{name:'Underline', key:'U', openWith:'[u]', closeWith:'[/u]'},
		{name:'Alignments', className:'alignments', dropMenu:[
			{name:'Left', className:'left', openWith:'[align=left]', closeWith:'[/align]'},
			{name:'Center', className:'center', openWith:'[align=center]', closeWith:'[/align]'},
			{name:'Right', className:'right', openWith:'[align=right]', closeWith:'[/align]'},
			{name:'Justify', className:'justify', openWith:'[align=justify]', closeWith:'[/align]'}
			]
		},
		{separator:'---------------' },
		{name:'Picture', key:'P', replaceWith:'[img][![Url]!][/img]'},
		{name:'Link', key:'L', openWith:'[url=[![Url]!]]', closeWith:'[/url]', placeHolder:'Your text to link here...'},

		{separator:'---------------' },
		{name:'Quotes', openWith:'[quote]', closeWith:'[/quote]'},
		{separator:'---------------' },
	//	{name:'YouTube', openWith:'[youtube]', closeWith:'[/youtube]'},
	]
}
