diff media/js/markitup/sets/markdown/set.js @ 304:0231aad9e211

Fixing #123; removed the H1-H6 buttons from the markitup editor.
author Brian Neal <bgneal@gmail.com>
date Sat, 15 Jan 2011 21:11:50 +0000
parents 5b69d6e01fd4
children d502a997360e
line wrap: on
line diff
--- a/media/js/markitup/sets/markdown/set.js	Sat Jan 15 20:48:42 2011 +0000
+++ b/media/js/markitup/sets/markdown/set.js	Sat Jan 15 21:11:50 2011 +0000
@@ -18,13 +18,6 @@
     previewPosition: 'after',
 	onShiftEnter:		{keepDefault:false, openWith:'\n\n'},
 	markupSet: [
-		{name:'First Level Heading', key:'1', placeHolder:'Your title here...', closeWith:function(markItUp) { return miu.markdownTitle(markItUp, '=') } },
-		{name:'Second Level Heading', key:'2', placeHolder:'Your title here...', closeWith:function(markItUp) { return miu.markdownTitle(markItUp, '-') } },
-		{name:'Heading 3', key:'3', openWith:'### ', placeHolder:'Your title here...' },
-		{name:'Heading 4', key:'4', openWith:'#### ', placeHolder:'Your title here...' },
-		{name:'Heading 5', key:'5', openWith:'##### ', placeHolder:'Your title here...' },
-		{name:'Heading 6', key:'6', openWith:'###### ', placeHolder:'Your title here...' },
-		{separator:'---------------' },		
 		{name:'Bold', key:'B', openWith:'**', closeWith:'**'},
 		{name:'Italic', key:'I', openWith:'_', closeWith:'_'},
 		{separator:'---------------' },