// ----------------------------------------------------------------------------
// 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
// ----------------------------------------------------------------------------
myMindatlSettings = {
	nameSpace:       "mindatl",	
	onShiftEnter:  	{keepDefault:false, replaceWith:'<br />\n'},
	onCtrlEnter:  	{keepDefault:false, openWith:'\n<p>', closeWith:'</p>'},
	onTab:    		{keepDefault:false, replaceWith:'    '},
	markupSet:  [ 	
		{name:'Formula', key:'F', openWith:'<f>', closeWith:'</f>' },
		{name:'Miller Index', key:'W', openWith:'<mi>', closeWith:'</mi>' },
		{separator:'---------------' },
		{name:'Add mineral link', key:'M', openWith:'<m>', closeWith:'</m>' },
		{name:'Add locality link', key:'L', openWith:'<l id=XXXX>', closeWith:'</l>' },
		{name:'Add article link', key:'A', openWith:'<article id=XXXX>', closeWith:'</article>' },
		{name:'Add glossary link', key:'G', openWith:'<g>', closeWith:'</g>' }
	]
}