// ----------------------------------------------------------------------------
// 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: [
		{name:'Bold', key:'B', openWith:'[b]', closeWith:'[/b]'},
		{name:'Italic', key:'I', openWith:'[i]', closeWith:'[/i]'},
		{name:'Underline', key:'U', openWith:'[u]', closeWith:'[/u]'},
		{separator:'---------------' },
		{name:'Изображение', key:'P', replaceWith:'[IMG][![Url]!][/IMG]'},
		{name:'Ссылка', key:'L', openWith:'[url=[![Url]!]]', closeWith:'[/url]', placeHolder:'Ваш текст для ссылки...'},
		{separator:'---------------' },
		{name:'Цитировать', openWith:'[quote]', closeWith:'[/quote]'},
		{name:'Видео', openWith:'[video=', closeWith:']'},
		{name:'Видео', openWith:'[video=', closeWith:']'},
		{separator:'---------------' },
		{name:'Smile',openWith:':-)', closeWith:''},
		{name:'Happy',openWith:':-D', closeWith:''},
		{name:'Wink',openWith:';-)', closeWith:''},
		{name:'Tongue',openWith:':-P', closeWith:''},
		{name:'Surprise',openWith:':-0', closeWith:''},
		{name:'Unhappy',openWith:':-(', closeWith:''}
	]
}

flop = {
	previewParserPath:	'', // path to your BBCode parser
	markupSet: [
		{name:'Bold', key:'B', openWith:'[b]', closeWith:'[/b]'},
		{name:'Italic', key:'I', openWith:'[i]', closeWith:'[/i]'},
		{name:'Underline', key:'U', openWith:'[u]', closeWith:'[/u]'},
		{separator:'---------------' },
		{name:'Picture', key:'P', replaceWith:'[SCRIMG][![Url]!][/SCRIMG]'},
		{name:'Link', key:'L', openWith:'[url=[![Url]!]]', closeWith:'[/url]', placeHolder:'Your text to link here...'},
		{separator:'---------------' },
		{name:'Quotes', openWith:'[quote]', closeWith:'[/quote]'},
		{name:'Code', openWith:'[code]', closeWith:'[/code]'},
		{name:'Video', openWith:'[video=', closeWith:']'},
		{separator:'---------------' },
		{name:'Smile',openWith:':-)', closeWith:''},
		{name:'Happy',openWith:':-D', closeWith:''},
		{name:'Wink',openWith:';-)', closeWith:''},
		{name:'Tongue',openWith:':-P', closeWith:''},
		{name:'Surprise',openWith:':-0', closeWith:''},
		{name:'Unhappy',openWith:':-(', closeWith:''}
	]
}
