// ----------------------------------------------------------------------------
// 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
// ----------------------------------------------------------------------------
mySettingsBB = {
	previewParserPath:	'', // path to your BBCode parser
	markupSet: [
		{name:'Gras', key:'B', openWith:'[b]', closeWith:'[/b]'},
		{name:'Italique', key:'I', openWith:'[i]', closeWith:'[/i]'},
		{name:'Soulign&eacute;', key:'U', openWith:'[u]', closeWith:'[/u]'},
		{separator:'---------------' },
		{name:'Image', key:'P', replaceWith:'[img][![Url de l\'image:!:http://]!][/img]'},
		{name:'Lien', key:'L', openWith:'[url=[![Lien:!:http://]!]]', closeWith:'[/url]', placeHolder:'Ici le texte de votre lien ...'},
		{name:'Code', openWith:'[code]', closeWith:'[/code]'},
	]
}

mySettingsSimple= {
	previewParserPath:	'', // path to your BBCode parser
	markupSet: [
		{name:'Gras', key:'B', openWith:'[b]', closeWith:'[/b]'},
		{name:'Italique', key:'I', openWith:'[i]', closeWith:'[/i]'},
		{name:'Soulign&eacute;', key:'U', openWith:'[u]', closeWith:'[/u]'},
		{separator:'---------------' },
	]
}
