// ---------------------------------------------------------------------------- // 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, openWith:'\n

', closeWith:'

'}, onTab: {keepDefault:false, replaceWith:' '}, markupSet: [ {name:'Heading 2', key:'2', openWith:'', closeWith:'', placeHolder:'Your title here...' }, {name:'Heading 3', key:'3', openWith:'', closeWith:'', placeHolder:'Your title here...' }, {name:'Heading 4', key:'4', openWith:'', closeWith:'', placeHolder:'Your title here...' }, {name:'Heading 5', key:'5', openWith:'', closeWith:'', placeHolder:'Your title here...' }, {separator:'---------------' }, {name:'Bold', key:'B', openWith:'(!(|!|)!)', closeWith:'(!(|!|)!)' }, {name:'Italic', key:'I', openWith:'(!(|!|)!)', closeWith:'(!(|!|)!)' }, {name:'Stroke through', key:'S', openWith:'', closeWith:'' }, {separator:'---------------' }, {name:'Ul', openWith:'
    \n', closeWith:'
\n' }, {name:'Ol', openWith:'
    \n', closeWith:'
\n' }, {name:'Li', openWith:'
  • ', closeWith:'
  • ' }, {separator:'---------------' }, {name:'Picture', key:'P', replaceWith:'[![Alternative text]!]' }, {name:'Video', replaceWith:'[video:[![Source:!:http://]!]]' }, {name:'Link', key:'L', openWith:'', closeWith:'', placeHolder:'Your text to link...' }, {separator:'---------------' }, {name:'Quote', openWith:'
    ', closeWith:'
    ', className:'BlockQuote'}, ] }