// ----------------------------------------------------------------------------
// 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:	'/Forum/aJax/onIzle.asp', // path to your BBCode parser
	markupSet: [
		{name:'Kalın', key:'B', openWith:'[b]', closeWith:'[/b]'},
		{name:'Yana yatık', key:'I', openWith:'[i]', closeWith:'[/i]'},
		{name:'Altı Çizili', key:'U', openWith:'[u]', closeWith:'[/u]'},
		{separator:'---------------' },
		{name:'Resim', key:'P', replaceWith:'[img][![Url]!][/img]'},
		{name:'Link', key:'L', openWith:'[url=[![Url]!]]', closeWith:'[/url]', placeHolder:'Lütfen açıklama giriniz.'},
		{name:'Alıntı', openWith:'[quote]', closeWith:'[/quote]'},
		{separator:'---------------' },
		{name:'Temizle', className:"clean", replaceWith:function(markitup) { return markitup.selection.replace(/\[(.*?)\]/g, "") } },
		{name:'Önizleme', className:"preview", call:'preview' }
	]
}
