// -------------------------------------------------------------------
// 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 = {
  nameSpace:           "textile", // Useful to prevent multi-instances CSS conflict
  previewParserPath:	'~/sets/textile/preview.php', // path to your Textile parser
  onShiftEnter:		{keepDefault:false, replaceWith:'\n\n'},
  markupSet: [
  {name:'Bold', key:'B', closeWith:'*', openWith:'*'},
  {name:'Bulleted list', openWith:'(!(* |!|*)!)'},
  {name:'Link', openWith:'"', closeWith:'([![Title]!])":[![Link:!:http://]!]', placeHolder:'Your text to link here...' },
  {name:'Preview', call:'preview', className:'preview'}
	]
}