// ----------------------------------------------------------------------------
// 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:'Pogrubienie', key:'B', openWith:'[b]', closeWith:'[/b]'},
		{name:'Kursywa', key:'I', openWith:'[i]', closeWith:'[/i]'},
		{name:'Podkreślenie', key:'U', openWith:'[u]', closeWith:'[/u]'},
		{separator:'---------------' },
		{name:'Link', key:'L', openWith:'[url=[![Link:!:http://]!]]', closeWith:'[/url]', placeHolder:'Podaj tytuł odnośnika'},
		{separator:'---------------' },
		{name:'Cytat', openWith:'[quote]', closeWith:'[/quote]'}
		
	]
}