// ----------------------------------------------------------------------------
// markItUp!
// ----------------------------------------------------------------------------
// Copyright (C) 2007 Jay Salvat
// http://markitup.jaysalvat.com/
// ----------------------------------------------------------------------------
// Markdown tags
// http://daringfireball.net/projects/markdown/
// http://en.wikipedia.org/wiki/Markdown/
// ----------------------------------------------------------------------------
// Basic set here. Feel free to add more tags
// ----------------------------------------------------------------------------
smileySettings = {
	previewParserPath:	"", // path to your Markdown parser
	onShiftEnter:		{keepDefault:false,	openWith:'\n\n'},
	markupSet: [		 
		{name:'Bold', key:"B", openWith:'**', closeWith:'**'},
		{name:'Italic', key:"I", openWith:'_', closeWith:'_'},
		{name:'Bulleted List', openWith:'- ' },
        /*
		{name:'Numeric List', openWith:function(h) {
			return h.line+'. ';
		}},
		*/
		{name:'Picture', key:"P", replaceWith:'![[![Alternative text]!]]([![Url:!:http://]!] "[![Title]!]")'},
		{name:'Link', key:"L", openWith:'[', closeWith:']([![Url:!:http://]!] "[![Title]!]")', placeHolder:'Your text to link here...' },
		{name:'Quote', openWith:'> '},
        {separator:'---------------'},	
		{name:'smile', openWith:':-) '},
		{name:'lol', openWith:':-D '},
		{name:'wink', openWith:';-) '},
		{name:'tongue', openWith:':-P '},
		{name:'happy', openWith:'^_^ '},
		{name:'neutral', openWith:':-| '},
		{name:'sad', openWith:':-( '},
		{name:'cry', openWith:';-( '},
		{name:'confused', openWith:':-/ '},
		{name:'cool', openWith:'8-) '},
		{name:'dizzy', openWith:'O_o '},
		{name:'omg', openWith:':-o '}
	]
};
simpleSettings = {
	previewParserPath:	"", // path to your Markdown parser
	onShiftEnter:		{keepDefault:false,	openWith:'\n\n'},
	markupSet: [		 
		{name:'Bold', key:"B", openWith:'**', closeWith:'**'},
		{name:'Italic', key:"I", openWith:'_', closeWith:'_'},
		{name:'Bulleted List', openWith:'- ' },
        /*
		{name:'Numeric List', openWith:function(h) {
			return h.line+'. ';
		}},
		*/
		{name:'Picture', key:"P", replaceWith:'![[![Alternative text]!]]([![Url:!:http://]!] "[![Title]!]")'},
		{name:'Link', key:"L", openWith:'[', closeWith:']([![Url:!:http://]!] "[![Title]!]")', placeHolder:'Your text to link here...' },
		{name:'Quote', openWith:'> '}
	]
}
