// -------------------------------------------------------------------
// markItUp!
// -------------------------------------------------------------------
// Copyright (C) 2008 Jay Salvat
// http://markitup.jaysalvat.com/
// -------------------------------------------------------------------
// Textile tags example
// http://en.wikipedia.org/wiki/Textile_(markup_language)
// http://www.textism.com/
// -------------------------------------------------------------------
// Feel free to add more tags
// -------------------------------------------------------------------
myTextileSettings = {
	previewParserPath:	'', // path to your Textile parser
	onShiftEnter:		{keepDefault:false, replaceWith:'\n\n'},
	markupSet: [
		{name:'Заголовок 2', key:'2', openWith:'h2(!(([![Class]!]))!). ', placeHolder:'Ваш заголовок...' },
		{name:'Заголовок 3', key:'3', openWith:'h3(!(([![Class]!]))!). ', placeHolder:'Ваш заголовок...' },
		{name:'Заголовок 4', key:'4', openWith:'h4(!(([![Class]!]))!). ', placeHolder:'Ваш заголовок...' },
		{name:'Заголовок 5', key:'5', openWith:'h5(!(([![Class]!]))!). ', placeHolder:'Ваш заголовок...' },
		{name:'Заголовок 6', key:'6', openWith:'h6(!(([![Class]!]))!). ', placeHolder:'Ваш заголовок...' },
		{name:'Параграф', key:'P', openWith:'p(!(([![Class]!]))!). '},
		{separator:'---------------' },
		{name:'Жирный', key:'B', closeWith:'*', openWith:'*'},
		{name:'Курсив', key:'I', closeWith:'_', openWith:'_'},
		{name:'Зачёркнутый', key:'S', closeWith:'-', openWith:'-'},
		{separator:'---------------' },
		{name:'Ненумерованный список', openWith:'(!(* |!|*)!)'},
		{name:'Нумерованный список', openWith:'(!(# |!|#)!)'}, 
		{separator:'---------------' },
		{name:'Ссылка на изображение', replaceWith:'![![Source:!:http://]!]([![Alternative text]!])!'}, 
		{name:'Ссылка', openWith:'"', closeWith:'([![Title]!])":[![Link:!:http://]!]', placeHolder:'Текст ссылки...' },
		{separator:'---------------' },
		{name:'Цитата', openWith:'bq(!(([![Class]!]))!). '},
		//{name:'Code', openWith:'@', closeWith:'@'},
		//{separator:'---------------' }
		//{name:'Preview', call:'preview', className:'preview'}
	]
}

