// ----------------------------------------------------------------------------
// markItUp!
// ----------------------------------------------------------------------------
// Copyright (C) 2007 Jay Salvat
// http://markitup.jaysalvat.com/
// ----------------------------------------------------------------------------
// BBCode tags example
// http://en.wikipedia.org/wiki/Bbcode
// ----------------------------------------------------------------------------
// Feel free to add more tags
var frauenMarkitupSettings = {
    nameSpace: "bbcode",
    markupSet: [		
	  {name:'Fett', key:'B', openWith:'[b]', closeWith:'[/b]', className:'markItUpButtonBold'}, 
	  {name:'Kursiv', key:'I', openWith:'[i]', closeWith:'[/i]', className:'markItUpButtonItalic'}, 
	  {name:'Unterstrichen', key:'U', openWith:'[u]', closeWith:'[/u]', className:'markItUpButtonUnderline'}, 
	  {separator:'---------------' },
	  {name:'Liste', openWith:'[list]\n', closeWith:'\n[/list]', className:'markItUpButtonBulletlist'}, 
	  {name:'Listenpunkt', openWith:'[*] ', className:'markItUpButtonListitem'}
   ]
}