comparison static/js/markitup/sets/default/set.js @ 312:88b2b9cb8c1f

Fixing #142; cut over to the django.contrib.staticfiles app.
author Brian Neal <bgneal@gmail.com>
date Thu, 27 Jan 2011 02:56:10 +0000
parents
children c78c6e007e61
comparison
equal deleted inserted replaced
311:b1c39788e511 312:88b2b9cb8c1f
1 // ----------------------------------------------------------------------------
2 // markItUp!
3 // ----------------------------------------------------------------------------
4 // Copyright (C) 2008 Jay Salvat
5 // http://markitup.jaysalvat.com/
6 // ----------------------------------------------------------------------------
7 // Html tags
8 // http://en.wikipedia.org/wiki/html
9 // ----------------------------------------------------------------------------
10 // Basic set. Feel free to add more tags
11 // ----------------------------------------------------------------------------
12 mySettings = {
13 onShiftEnter: {keepDefault:false, replaceWith:'<br />\n'},
14 onCtrlEnter: {keepDefault:false, openWith:'\n<p>', closeWith:'</p>'},
15 onTab: {keepDefault:false, replaceWith:' '},
16 markupSet: [
17 {name:'Bold', key:'B', openWith:'(!(<strong>|!|<b>)!)', closeWith:'(!(</strong>|!|</b>)!)' },
18 {name:'Italic', key:'I', openWith:'(!(<em>|!|<i>)!)', closeWith:'(!(</em>|!|</i>)!)' },
19 {name:'Stroke through', key:'S', openWith:'<del>', closeWith:'</del>' },
20 {separator:'---------------' },
21 {name:'Picture', key:'P', replaceWith:'<img src="[![Source:!:http://]!]" alt="[![Alternative text]!]" />' },
22 {name:'Link', key:'L', openWith:'<a href="[![Link:!:http://]!]"(!( title="[![Title]!]")!)>', closeWith:'</a>', placeHolder:'Your text to link...' },
23 {separator:'---------------' },
24 {name:'Clean', className:'clean', replaceWith:function(markitup) { return markitup.selection.replace(/<(.*?)>/g, "") } },
25 {name:'Preview', className:'preview', call:'preview'}
26 ]
27 }