// ----------------------------------------------------------------------------
// markItUp!
// ----------------------------------------------------------------------------
// Copyright (C) 2008 Jay Salvat
// http://markitup.jaysalvat.com/
// ----------------------------------------------------------------------------
myBbcodeSettings = {
  nameSpace:          "bbcode", // Useful to prevent multi-instances CSS conflict
  previewParserPath:  "admin/includes/moduleManager/modules/BbcodeEditor/markitup/bbcode/preview.php",
  markupSet: [
      {name:'Gras', key:'B', openWith:'[b]', closeWith:'[/b]'}, 
      {name:'Italique', key:'I', openWith:'[i]', closeWith:'[/i]'}, 
      {name:'Souligne', key:'U', openWith:'[u]', closeWith:'[/u]'}, 
      {separator:'---------------' },
      {name:'Image', key:'P', replaceWith:'[img][![Url]!][/img]'}, 
      {name:'Lien', key:'L', openWith:'[url=[![Url]!]]', closeWith:'[/url]', placeHolder:'Texte de votre lien...'},
      {separator:'---------------' },
      {name:'Couleur', openWith:'[color=[![Color]!]]', closeWith:'[/color]', dropMenu: [
          {name:'Jaune', openWith:'[color=yellow]', closeWith:'[/color]', className:"col1-1" },
          {name:'Orange', openWith:'[color=orange]', closeWith:'[/color]', className:"col1-2" },
          {name:'Rouge', openWith:'[color=red]', closeWith:'[/color]', className:"col1-3" },
          {name:'Bleu', openWith:'[color=blue]', closeWith:'[/color]', className:"col2-1" },
          {name:'Violet', openWith:'[color=purple]', closeWith:'[/color]', className:"col2-2" },
          {name:'Vert', openWith:'[color=green]', closeWith:'[/color]', className:"col2-3" },
          {name:'Blanc', openWith:'[color=white]', closeWith:'[/color]', className:"col3-1" },
          {name:'Gris', openWith:'[color=gray]', closeWith:'[/color]', className:"col3-2" },
          {name:'Noir', openWith:'[color=black]', closeWith:'[/color]', className:"col3-3" }
      ]},
      {name:'Taille', key:'S', openWith:'[size=[![Taille de police :]!]]', closeWith:'[/size]', dropMenu :[
          {name:'Titre', openWith:'[size=16]', closeWith:'[/size]' },
          {name:'Normale', openWith:'[size=12]', closeWith:'[/size]' },
          {name:'Petite', openWith:'[size=9]', closeWith:'[/size]' }
      ]},
      {separator:'---------------' },
      {name:'Liste a puces', openWith:'[list]\n', closeWith:'\n[/list]'}, 
      {name:'Liste numerotee', openWith:'[list=[![Numero de depart :]!]]\n', closeWith:'\n[/list]'}, 
      {name:'Elements de la liste', openWith:'[*] '}, 
      {separator:'---------------' },
      {name:'Citation', openWith:'[quote]', closeWith:'[/quote]'}, 
      {name:'Code', openWith:'[code]', closeWith:'[/code]'}, 
      {separator:'---------------' },
      {name:'Nettoyer', className:"clean", replaceWith:function(h) { return h.selection.replace(/\[(.*?)\]/g, "") } },
      {name:'Previsualiser', className:"preview", call:'preview' }
   ]
}