// ----------------------------------------------------------------------------
// 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:'Youtube', key:'Y', replaceWith:'[youtube][![Adres WWW filmu na YouTube]!][/youtube]'},
		{name:'Obrazek', key:'P', replaceWith:'[img][![Adres WWW obrazka]!][/img]'},
		{name:'Link', key:'H', openWith:'[url=[![Url]!]]', closeWith:'[/url]', placeHolder:'Opis odsyłacza'},
		{separator:'---------------' },
		{name:':)', openWith:':)'},
		{name:':(', openWith:':('},
		{name:':o', openWith:':o'},
		{name:':p', openWith:':p'},
		{name:';)', openWith:';)'},
		{name:':D', openWith:':D'}
	]
}