// ----------------------------------------------------------------------------
// 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:'Полужирный', key:'B', openWith:'[b]', closeWith:'[/b]' },
		{name:'Курсив', key:'I', openWith:'[i]', closeWith:'[/i]'  },
		{name:'Подчеркнутый', key:'U', openWith:'[u]', closeWith:'[/u]'  },
		{name:'Зачеркнутый', key:'S', openWith:'[s]', closeWith:'[/s]' },
		{separator:'---------------' },
		{name:'Картинка', key:'P', replaceWith:'[img][![Ссылка на изображение:!:http://]!][/img]' },
		{name:'Ссылка', key:'L', openWith:'[url=[![Адрес:!:http://]!]][![Текст ссылки:!:Моя ссылка]!][/url]' },
	]
}
