// ----------------------------------------------------------------------------
// markItUp!
// ----------------------------------------------------------------------------
// Copyright (C) 2008 Jay Salvat
// http://markitup.jaysalvat.com/
// ----------------------------------------------------------------------------
// Html tags
// http://en.wikipedia.org/wiki/html
// ----------------------------------------------------------------------------
// Basic set. Feel free to add more tags
// ----------------------------------------------------------------------------
mySettings = {	
	onShiftEnter:  	{keepDefault:false, replaceWith:'\n'},
	onCtrlEnter:  	{keepDefault:false, replaceWith:'\n'},
	onTab:    		{keepDefault:false, replaceWith:'    '},
	resizeHandle: false,
	markupSet:  [ 	
		{name:'Bold', key:'B', openWith:'[b]', closeWith:'[/b]' },
		{name:'Italic', key:'I', openWith:'[i]', closeWith:'[/i]'  },
		{name:'Link', key:'L', openWith:'[link]', closeWith:'[/link]'}
	]
}