summaryrefslogtreecommitdiff
path: root/gstudio/static/gstudio/js/orgitdown/orgitdown/sets/org/set.js
blob: 17121d78b7addf7777369ef837bfe2fd4f65275b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
// ----------------------------------------------------------------------------
// orgitdown!
// ----------------------------------------------------------------------------
// Html tags
// http://en.wikipedia.org/wiki/html
// ----------------------------------------------------------------------------
// Basic set. Feel free to add more tags
// ----------------------------------------------------------------------------
var mySettings = {
	
        onShiftEnter:  	{keepDefault:false, replaceWith:'<br />\n'},
	onCtrlEnter:  	{keepDefault:false, openWith:'\n<p>', closeWith:'</p>'},
	onTab:    	{keepDefault:false, replaceWith:'    '},
	onAltEnter:     {keepDefault:false, replaceWith:'\n* '},
	onAltrightArrow: {keepDefault:false, replaceWith:'*'},
	markupSet:  [ 	
                {name:'Save',call:'save' },
	        {separator:'---------------' },
		{name:'Bold', key:'B', openWith:'*', closeWith:'*' },
		{name:'Italic', key:'I', openWith:'/', closeWith:'/'  },
		{name:'Stroke through', key:'S', openWith:'+', closeWith:'+' },
		{separator:'---------------' },
		{name:'Bulleted List', openWith:'    - ', closeWith:'', multiline:true, openBlockWith:'\n', closeBlockWith:'\n'},
		{name:'Numeric List', openWith:'    1. ', closeWith:'', multiline:true, openBlockWith:'\n', closeBlockWith:'\n'},
		{separator:'---------------' },
		{name:'Picture', key:'P', replaceWith:'\n#+CAPTION: \n#+ATTR_HTML: width="600" \n[[http:fileName.jpg]]\n' },
		{name:'Link', key:'L', openWith:'[[http://your.address.com here/][Your visible link text here]]', closeWith:'', placeHolder:'' },
	        {separator:'---------------' },
                {name:'Close',call:'close' }

		//{name:'Clean', className:'clean', replaceWith:function(orgitdown) { return orgitdown.selection.replace(/<(.*?)>/g, "") } }		
		//{name:'Preview', className:'preview',  call:'preview'}
	]
}