// ----------------------------------------------------------------------------
// 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', openWith:'[b]', closeWith:'[/b]'},
		{name:'Pochylenie', openWith:'[i]', closeWith:'[/i]'},
		{name:'Podkreślenie', openWith:'[u]', closeWith:'[/u]'},
		{name:'Link', openWith:'[url=[![Url]!]]', closeWith:'[/url]', placeHolder:'Tekst adresu...'},
		{name:'Lista punktowa', openWith:'[list]\n', closeWith:'\n[/list]'},
		{name:'Lista numeryczna', openWith:'[list=[![Numer]!]]\n', closeWith:'\n[/list]'}, 
		{name:'Element listy', openWith:'[*] '},
		{name:'Cytat', openWith:'[quote]', closeWith:'[/quote]'},
		{name:'Wyczyść', className:'clean', replaceWith:function(markitup) { return markitup.selection.replace(/\[(.*?)\]/g, "") } },

	]
}

