mirror of
https://github.com/wahyd4/cdnjs.git
synced 2026-08-29 06:36:08 +10:00
Added bootstrap markdown
This commit is contained in:
@@ -0,0 +1 @@
|
||||
.clearfix{*zoom:1;}.clearfix:before,.clearfix:after{display:table;content:"";line-height:0}.clearfix:after{clear:both}.hide-text{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.input-block-level{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.md-editor{display:block;border:1px solid #ddd}.md-editor>.md-header,.md-editor .md-footer{display:block;padding:6px 4px;background:#fff}.md-editor>.md-preview{background:#fff;border-top:1px dashed #ddd;border-bottom:1px dashed #ddd;min-height:10px}.md-editor>textarea{font-family:Monaco,Menlo,Consolas,"Courier New",monospace;font-size:14px;outline:0;outline:thin dotted \9;margin:0;display:block;padding:0;width:100%;border:0;border-top:1px dashed #ddd;border-bottom:1px dashed #ddd;border-radius:0;box-shadow:none;background:#eee}.md-editor>textarea:focus{box-shadow:none;background:#fff}.md-editor.active{-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(82,168,236,.6);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(82,168,236,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(82,168,236,.6);border-color:rgba(82,168,236,0.8);outline:0;outline:thin dotted \9;-webkit-transition:border linear .2s,box-shadow linear .2s;-moz-transition:border linear .2s,box-shadow linear .2s;-o-transition:border linear .2s,box-shadow linear .2s;transition:border linear .2s,box-shadow linear .2s}
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1 @@
|
||||
.clearfix{*zoom:1;}.clearfix:before,.clearfix:after{display:table;content:"";line-height:0}.clearfix:after{clear:both}.hide-text{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.input-block-level{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.md-editor{display:block;border:1px solid #ddd}.md-editor>.md-header,.md-editor .md-footer{display:block;padding:6px 4px;background:#fff}.md-editor>.md-preview{background:#fff;border-top:1px dashed #ddd;border-bottom:1px dashed #ddd;min-height:10px}.md-editor>textarea{font-family:Monaco,Menlo,Consolas,"Courier New",monospace;font-size:14px;outline:0;outline:thin dotted \9;margin:0;display:block;padding:0;width:100%;border:0;border-top:1px dashed #ddd;border-bottom:1px dashed #ddd;border-radius:0;box-shadow:none;background:#eee}.md-editor>textarea:focus{box-shadow:none;background:#fff}.md-editor.active{-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(82,168,236,.6);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(82,168,236,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(82,168,236,.6);border-color:rgba(82,168,236,0.8);outline:0;outline:thin dotted \9;-webkit-transition:border linear .2s,box-shadow linear .2s;-moz-transition:border linear .2s,box-shadow linear .2s;-o-transition:border linear .2s,box-shadow linear .2s;transition:border linear .2s,box-shadow linear .2s}
|
||||
@@ -0,0 +1,980 @@
|
||||
/* ===================================================
|
||||
* bootstrap-markdown.js v1.1.3
|
||||
* http://github.com/toopay/bootstrap-markdown
|
||||
* ===================================================
|
||||
* Copyright 2013 Taufan Aditya
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
* ========================================================== */
|
||||
|
||||
!function ($) {
|
||||
|
||||
"use strict"; // jshint ;_;
|
||||
|
||||
|
||||
/* MARKDOWN CLASS DEFINITION
|
||||
* ========================== */
|
||||
|
||||
var Markdown = function (element, options) {
|
||||
// Class Properties
|
||||
this.$ns = 'bootstrap-markdown'
|
||||
this.$element = $(element)
|
||||
this.$editable = {el:null, type:null,attrKeys:[], attrValues:[], content:null}
|
||||
this.$options = $.extend(true, {}, $.fn.markdown.defaults, options)
|
||||
this.$oldContent = null
|
||||
this.$isPreview = false
|
||||
this.$editor = null
|
||||
this.$textarea = null
|
||||
this.$handler = []
|
||||
this.$callback = []
|
||||
this.$nextTab = []
|
||||
|
||||
this.showEditor()
|
||||
}
|
||||
|
||||
Markdown.prototype = {
|
||||
|
||||
constructor: Markdown
|
||||
|
||||
, __alterButtons: function(name,alter) {
|
||||
var handler = this.$handler, isAll = (name == 'all'),that = this
|
||||
|
||||
$.each(handler,function(k,v) {
|
||||
var halt = true
|
||||
if (isAll) {
|
||||
halt = false
|
||||
} else {
|
||||
halt = v.indexOf(name) < 0
|
||||
}
|
||||
|
||||
if (halt == false) {
|
||||
alter(that.$editor.find('button[data-handler="'+v+'"]'))
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
, __buildButtons: function(buttonsArray, container) {
|
||||
var i,
|
||||
ns = this.$ns,
|
||||
handler = this.$handler,
|
||||
callback = this.$callback
|
||||
|
||||
for (i=0;i<buttonsArray.length;i++) {
|
||||
// Build each group container
|
||||
var y, btnGroups = buttonsArray[i]
|
||||
for (y=0;y<btnGroups.length;y++) {
|
||||
// Build each button group
|
||||
var z,
|
||||
buttons = btnGroups[y].data,
|
||||
btnGroupContainer = $('<div/>', {
|
||||
'class': 'btn-group'
|
||||
})
|
||||
|
||||
for (z=0;z<buttons.length;z++) {
|
||||
var button = buttons[z],
|
||||
buttonToggle = '',
|
||||
buttonHandler = ns+'-'+button.name,
|
||||
btnText = button.btnText ? button.btnText : '',
|
||||
btnClass = button.btnClass ? button.btnClass : 'btn',
|
||||
tabIndex = button.tabIndex ? button.tabIndex : '-1'
|
||||
|
||||
if (button.toggle == true) {
|
||||
buttonToggle = ' data-toggle="button"'
|
||||
}
|
||||
|
||||
// Attach the button object
|
||||
btnGroupContainer.append('<button class="'
|
||||
+btnClass
|
||||
+' btn-small" title="'
|
||||
+button.title
|
||||
+'" tabindex="'
|
||||
+tabIndex
|
||||
+'" data-provider="'
|
||||
+ns
|
||||
+'" data-handler="'
|
||||
+buttonHandler
|
||||
+'"'
|
||||
+buttonToggle
|
||||
+'><i class="'
|
||||
+button.icon
|
||||
+'"></i> '
|
||||
+btnText
|
||||
+'</button>')
|
||||
|
||||
// Register handler and callback
|
||||
handler.push(buttonHandler)
|
||||
callback.push(button.callback)
|
||||
}
|
||||
|
||||
// Attach the button group into container dom
|
||||
container.append(btnGroupContainer)
|
||||
}
|
||||
}
|
||||
|
||||
return container
|
||||
}
|
||||
, __setListener: function() {
|
||||
// Set size and resizable Properties
|
||||
var hasRows = typeof this.$textarea.attr('rows') != 'undefined',
|
||||
maxRows = this.$textarea.val().split("\n").length > 5 ? this.$textarea.val().split("\n").length : '5',
|
||||
rowsVal = hasRows ? this.$textarea.attr('rows') : maxRows
|
||||
|
||||
this.$textarea.attr('rows',rowsVal)
|
||||
this.$textarea.css('resize','none')
|
||||
|
||||
this.$textarea
|
||||
.on('focus', $.proxy(this.focus, this))
|
||||
.on('keypress', $.proxy(this.keypress, this))
|
||||
.on('keyup', $.proxy(this.keyup, this))
|
||||
|
||||
if (this.eventSupported('keydown')) {
|
||||
this.$textarea.on('keydown', $.proxy(this.keydown, this))
|
||||
}
|
||||
|
||||
// Re-attach markdown data
|
||||
this.$textarea.data('markdown',this)
|
||||
}
|
||||
|
||||
, __handle: function(e) {
|
||||
var target = $(e.currentTarget),
|
||||
handler = this.$handler,
|
||||
callback = this.$callback,
|
||||
handlerName = target.attr('data-handler'),
|
||||
callbackIndex = handler.indexOf(handlerName),
|
||||
callbackHandler = callback[callbackIndex]
|
||||
|
||||
// Trigger the focusin
|
||||
$(e.currentTarget).focus()
|
||||
|
||||
callbackHandler(this)
|
||||
|
||||
// Unless it was the save handler,
|
||||
// focusin the textarea
|
||||
if (handlerName.indexOf('cmdSave') < 0) {
|
||||
this.$textarea.focus()
|
||||
}
|
||||
|
||||
e.preventDefault()
|
||||
}
|
||||
|
||||
, showEditor: function() {
|
||||
var instance = this,
|
||||
textarea,
|
||||
ns = this.$ns,
|
||||
container = this.$element,
|
||||
originalHeigth = container.css('height'),
|
||||
originalWidth = container.css('width'),
|
||||
editable = this.$editable,
|
||||
handler = this.$handler,
|
||||
callback = this.$callback,
|
||||
options = this.$options,
|
||||
editor = $( '<div/>', {
|
||||
'class': 'md-editor',
|
||||
click: function() {
|
||||
instance.focus()
|
||||
}
|
||||
})
|
||||
|
||||
// Prepare the editor
|
||||
if (this.$editor == null) {
|
||||
// Create the panel
|
||||
var editorHeader = $('<div/>', {
|
||||
'class': 'md-header'
|
||||
})
|
||||
|
||||
// Build the main buttons
|
||||
if (options.buttons.length > 0) {
|
||||
editorHeader = this.__buildButtons(options.buttons, editorHeader)
|
||||
}
|
||||
|
||||
// Build the additional buttons
|
||||
if (options.additionalButtons.length > 0) {
|
||||
editorHeader = this.__buildButtons(options.additionalButtons, editorHeader)
|
||||
}
|
||||
|
||||
editor.append(editorHeader)
|
||||
|
||||
// Wrap the textarea
|
||||
if (container.is('textarea')) {
|
||||
container.before(editor)
|
||||
textarea = container
|
||||
textarea.addClass('md-input')
|
||||
editor.append(textarea)
|
||||
} else {
|
||||
var rawContent = (typeof toMarkdown == 'function') ? toMarkdown(container.html()) : container.html(),
|
||||
currentContent = $.trim(rawContent)
|
||||
|
||||
// This is some arbitrary content that could be edited
|
||||
textarea = $('<textarea/>', {
|
||||
'class': 'md-input',
|
||||
'val' : currentContent
|
||||
})
|
||||
|
||||
editor.append(textarea)
|
||||
|
||||
// Save the editable
|
||||
editable.el = container
|
||||
editable.type = container.prop('tagName').toLowerCase()
|
||||
editable.content = container.html()
|
||||
|
||||
$(container[0].attributes).each(function(){
|
||||
editable.attrKeys.push(this.nodeName)
|
||||
editable.attrValues.push(this.nodeValue)
|
||||
})
|
||||
|
||||
// Set editor to blocked the original container
|
||||
container.replaceWith(editor)
|
||||
}
|
||||
|
||||
// Create the footer if savable
|
||||
if (options.savable) {
|
||||
var editorFooter = $('<div/>', {
|
||||
'class': 'md-footer'
|
||||
}),
|
||||
saveHandler = 'cmdSave'
|
||||
|
||||
// Register handler and callback
|
||||
handler.push(saveHandler)
|
||||
callback.push(options.onSave)
|
||||
|
||||
editorFooter.append('<button class="btn btn-success" data-provider="'
|
||||
+ns
|
||||
+'" data-handler="'
|
||||
+saveHandler
|
||||
+'"><i class="icon icon-white icon-ok"></i> Save</button>')
|
||||
|
||||
editor.append(editorFooter)
|
||||
}
|
||||
|
||||
// Set width/height
|
||||
$.each(['height','width'],function(k,attr){
|
||||
if (options[attr] != 'inherit') {
|
||||
if (jQuery.isNumeric(options[attr])) {
|
||||
editor.css(attr,options[attr]+'px')
|
||||
} else {
|
||||
editor.addClass(options[attr])
|
||||
}
|
||||
}
|
||||
})
|
||||
|
||||
// Reference
|
||||
this.$editor = editor
|
||||
this.$textarea = textarea
|
||||
this.$editable = editable
|
||||
this.$oldContent = this.getContent()
|
||||
|
||||
this.__setListener()
|
||||
|
||||
// Set editor attributes, data short-hand API and listener
|
||||
this.$editor.attr('id',(new Date).getTime())
|
||||
this.$editor.on('click', '[data-provider="bootstrap-markdown"]', $.proxy(this.__handle, this))
|
||||
|
||||
} else {
|
||||
this.$editor.show()
|
||||
}
|
||||
|
||||
if (options.autofocus) {
|
||||
this.$textarea.focus()
|
||||
this.$editor.addClass('active')
|
||||
}
|
||||
|
||||
// Trigger the onShow hook
|
||||
options.onShow(this)
|
||||
|
||||
return this
|
||||
}
|
||||
|
||||
, showPreview: function() {
|
||||
var options = this.$options,
|
||||
callbackContent = options.onPreview(this), // Try to get the content from callback
|
||||
container = this.$textarea,
|
||||
afterContainer = container.next(),
|
||||
replacementContainer = $('<div/>',{'class':'md-preview','data-provider':'markdown-preview'}),
|
||||
content
|
||||
|
||||
// Give flag that tell the editor enter preview mode
|
||||
this.$isPreview = true
|
||||
// Disable all buttons
|
||||
this.disableButtons('all').enableButtons('cmdPreview')
|
||||
|
||||
if (typeof callbackContent == 'string') {
|
||||
// Set the content based by callback content
|
||||
content = callbackContent
|
||||
} else {
|
||||
// Set the content
|
||||
content = (typeof markdown == 'object') ? markdown.toHTML(container.val()) : container.val()
|
||||
}
|
||||
|
||||
// Build preview element
|
||||
replacementContainer.html(content)
|
||||
|
||||
if (afterContainer && afterContainer.attr('class') == 'md-footer') {
|
||||
// If there is footer element, insert the preview container before it
|
||||
replacementContainer.insertBefore(afterContainer)
|
||||
} else {
|
||||
// Otherwise, just append it after textarea
|
||||
container.parent().append(replacementContainer)
|
||||
}
|
||||
|
||||
// Hide the last-active textarea
|
||||
container.hide()
|
||||
|
||||
// Attach the editor instances
|
||||
replacementContainer.data('markdown',this)
|
||||
|
||||
return this
|
||||
}
|
||||
|
||||
, hidePreview: function() {
|
||||
// Give flag that tell the editor quit preview mode
|
||||
this.$isPreview = false
|
||||
|
||||
// Obtain the preview container
|
||||
var container = this.$editor.find('div[data-provider="markdown-preview"]')
|
||||
|
||||
// Remove the preview container
|
||||
container.remove()
|
||||
|
||||
// Enable all buttons
|
||||
this.enableButtons('all')
|
||||
|
||||
// Back to the editor
|
||||
this.$textarea.show()
|
||||
this.__setListener()
|
||||
|
||||
return this
|
||||
}
|
||||
|
||||
, isDirty: function() {
|
||||
return this.$oldContent != this.getContent()
|
||||
}
|
||||
|
||||
, getContent: function() {
|
||||
return this.$textarea.val()
|
||||
}
|
||||
|
||||
, setContent: function(content) {
|
||||
this.$textarea.val(content)
|
||||
|
||||
return this
|
||||
}
|
||||
|
||||
, findSelection: function(chunk) {
|
||||
var content = this.getContent(), startChunkPosition
|
||||
|
||||
if (startChunkPosition = content.indexOf(chunk), startChunkPosition >= 0 && chunk.length > 0) {
|
||||
var oldSelection = this.getSelection(), selection
|
||||
|
||||
this.setSelection(startChunkPosition,startChunkPosition+chunk.length)
|
||||
selection = this.getSelection()
|
||||
|
||||
this.setSelection(oldSelection.start,oldSelection.end)
|
||||
|
||||
return selection
|
||||
} else {
|
||||
return null
|
||||
}
|
||||
}
|
||||
|
||||
, getSelection: function() {
|
||||
|
||||
var e = this.$textarea[0]
|
||||
|
||||
return (
|
||||
|
||||
('selectionStart' in e && function() {
|
||||
var l = e.selectionEnd - e.selectionStart
|
||||
return { start: e.selectionStart, end: e.selectionEnd, length: l, text: e.value.substr(e.selectionStart, l) }
|
||||
}) ||
|
||||
|
||||
/* browser not supported */
|
||||
function() {
|
||||
return null
|
||||
}
|
||||
|
||||
)()
|
||||
|
||||
}
|
||||
|
||||
, setSelection: function(start,end) {
|
||||
|
||||
var e = this.$textarea[0]
|
||||
|
||||
return (
|
||||
|
||||
('selectionStart' in e && function() {
|
||||
e.selectionStart = start
|
||||
e.selectionEnd = end
|
||||
return
|
||||
}) ||
|
||||
|
||||
/* browser not supported */
|
||||
function() {
|
||||
return null
|
||||
}
|
||||
|
||||
)()
|
||||
|
||||
}
|
||||
|
||||
, replaceSelection: function(text) {
|
||||
|
||||
var e = this.$textarea[0]
|
||||
|
||||
return (
|
||||
|
||||
('selectionStart' in e && function() {
|
||||
e.value = e.value.substr(0, e.selectionStart) + text + e.value.substr(e.selectionEnd, e.value.length)
|
||||
// Set cursor to the last replacement end
|
||||
e.selectionStart = e.value.length
|
||||
return this
|
||||
}) ||
|
||||
|
||||
/* browser not supported */
|
||||
function() {
|
||||
e.value += text
|
||||
return jQuery(e)
|
||||
}
|
||||
|
||||
)()
|
||||
|
||||
}
|
||||
|
||||
, getNextTab: function() {
|
||||
// Shift the nextTab
|
||||
if (this.$nextTab.length == 0) {
|
||||
return null
|
||||
} else {
|
||||
var nextTab, tab = this.$nextTab.shift()
|
||||
|
||||
if (typeof tab == 'function') {
|
||||
nextTab = tab()
|
||||
} else if (typeof tab == 'object' && tab.length > 0) {
|
||||
nextTab = tab
|
||||
}
|
||||
|
||||
return nextTab
|
||||
}
|
||||
}
|
||||
|
||||
, setNextTab: function(start,end) {
|
||||
// Push new selection into nextTab collections
|
||||
if (typeof start == 'string') {
|
||||
var that = this
|
||||
this.$nextTab.push(function(){
|
||||
return that.findSelection(start)
|
||||
})
|
||||
} else if (typeof start == 'numeric' && typeof end == 'numeric') {
|
||||
var oldSelection = this.getSelection()
|
||||
|
||||
this.setSelection(start,end)
|
||||
this.$nextTab.push(this.getSelection())
|
||||
|
||||
this.setSelection(oldSelection.start,oldSelection.end)
|
||||
}
|
||||
|
||||
return
|
||||
}
|
||||
|
||||
, enableButtons: function(name) {
|
||||
var alter = function (el) {
|
||||
el.removeAttr('disabled')
|
||||
}
|
||||
|
||||
this.__alterButtons(name,alter)
|
||||
|
||||
return this
|
||||
}
|
||||
|
||||
, disableButtons: function(name) {
|
||||
var alter = function (el) {
|
||||
el.attr('disabled','disabled')
|
||||
}
|
||||
|
||||
this.__alterButtons(name,alter)
|
||||
|
||||
return this
|
||||
}
|
||||
|
||||
, eventSupported: function(eventName) {
|
||||
var isSupported = eventName in this.$element
|
||||
if (!isSupported) {
|
||||
this.$element.setAttribute(eventName, 'return;')
|
||||
isSupported = typeof this.$element[eventName] === 'function'
|
||||
}
|
||||
return isSupported
|
||||
}
|
||||
|
||||
, keydown: function (e) {
|
||||
this.suppressKeyPressRepeat = ~$.inArray(e.keyCode, [40,38,9,13,27])
|
||||
this.keyup(e)
|
||||
}
|
||||
|
||||
, keypress: function (e) {
|
||||
if (this.suppressKeyPressRepeat) return
|
||||
this.keyup(e)
|
||||
}
|
||||
|
||||
, keyup: function (e) {
|
||||
var blocked = false
|
||||
switch(e.keyCode) {
|
||||
case 40: // down arrow
|
||||
case 38: // up arrow
|
||||
case 16: // shift
|
||||
case 17: // ctrl
|
||||
case 18: // alt
|
||||
break
|
||||
|
||||
case 9: // tab
|
||||
var nextTab
|
||||
if (nextTab = this.getNextTab(),nextTab != null) {
|
||||
// Get the nextTab if exists
|
||||
var that = this
|
||||
setTimeout(function(){
|
||||
that.setSelection(nextTab.start,nextTab.end)
|
||||
},500)
|
||||
} else {
|
||||
// Put the cursor to the end
|
||||
this.setSelection(this.getContent().length,this.getContent().length)
|
||||
}
|
||||
|
||||
blocked = true
|
||||
break
|
||||
|
||||
case 13: // enter
|
||||
case 27: // escape
|
||||
blocked = false
|
||||
break
|
||||
|
||||
default:
|
||||
blocked = false
|
||||
}
|
||||
|
||||
if (blocked) {
|
||||
e.stopPropagation()
|
||||
e.preventDefault()
|
||||
}
|
||||
}
|
||||
|
||||
, focus: function (e) {
|
||||
var options = this.$options,
|
||||
isHideable = options.hideable,
|
||||
editor = this.$editor
|
||||
|
||||
editor.addClass('active')
|
||||
|
||||
// Blur other markdown(s)
|
||||
$(document).find('.md-editor').each(function(){
|
||||
if ($(this).attr('id') != editor.attr('id')) {
|
||||
var attachedMarkdown
|
||||
|
||||
if (attachedMarkdown = $(this).find('textarea').data('markdown'),
|
||||
attachedMarkdown == null) {
|
||||
attachedMarkdown = $(this).find('div[data-provider="markdown-preview"]').data('markdown')
|
||||
}
|
||||
|
||||
if (attachedMarkdown) {
|
||||
attachedMarkdown.blur()
|
||||
}
|
||||
}
|
||||
})
|
||||
|
||||
return this
|
||||
}
|
||||
|
||||
, blur: function (e) {
|
||||
var options = this.$options,
|
||||
isHideable = options.hideable,
|
||||
editor = this.$editor,
|
||||
editable = this.$editable
|
||||
|
||||
if (editor.hasClass('active') || this.$element.parent().length == 0) {
|
||||
editor.removeClass('active')
|
||||
|
||||
if (isHideable) {
|
||||
|
||||
// Check for editable elements
|
||||
if (editable.el != null) {
|
||||
// Build the original element
|
||||
var oldElement = $('<'+editable.type+'/>'),
|
||||
content = this.getContent(),
|
||||
currentContent = (typeof markdown == 'object') ? markdown.toHTML(content) : content
|
||||
|
||||
$(editable.attrKeys).each(function(k,v) {
|
||||
oldElement.attr(editable.attrKeys[k],editable.attrValues[k])
|
||||
})
|
||||
|
||||
// Get the editor content
|
||||
oldElement.html(currentContent)
|
||||
|
||||
editor.replaceWith(oldElement)
|
||||
} else {
|
||||
editor.hide()
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
// Trigger the onBlur hook
|
||||
options.onBlur(this)
|
||||
}
|
||||
|
||||
return this
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
/* MARKDOWN PLUGIN DEFINITION
|
||||
* ========================== */
|
||||
|
||||
var old = $.fn.markdown
|
||||
|
||||
$.fn.markdown = function (option) {
|
||||
return this.each(function () {
|
||||
var $this = $(this)
|
||||
, data = $this.data('markdown')
|
||||
, options = typeof option == 'object' && option
|
||||
if (!data) $this.data('markdown', (data = new Markdown(this, options)))
|
||||
})
|
||||
}
|
||||
|
||||
$.fn.markdown.defaults = {
|
||||
/* Editor Properties */
|
||||
autofocus: false,
|
||||
hideable: false,
|
||||
savable:false,
|
||||
width: 'inherit',
|
||||
height: 'inherit',
|
||||
|
||||
/* Buttons Properties */
|
||||
buttons: [
|
||||
[{
|
||||
name: 'groupFont',
|
||||
data: [{
|
||||
name: 'cmdBold',
|
||||
title: 'Bold',
|
||||
icon: 'icon icon-bold',
|
||||
callback: function(e){
|
||||
// Give/remove ** surround the selection
|
||||
var chunk, cursor, selected = e.getSelection(), content = e.getContent()
|
||||
|
||||
if (selected.length == 0) {
|
||||
// Give extra word
|
||||
chunk = 'strong text'
|
||||
} else {
|
||||
chunk = selected.text
|
||||
}
|
||||
|
||||
// transform selection and set the cursor into chunked text
|
||||
if (content.substr(selected.start-2,2) == '**'
|
||||
&& content.substr(selected.end,2) == '**' ) {
|
||||
e.setSelection(selected.start-2,selected.end+2)
|
||||
e.replaceSelection(chunk)
|
||||
cursor = selected.start-2
|
||||
} else {
|
||||
e.replaceSelection('**'+chunk+'**')
|
||||
cursor = selected.start+2
|
||||
}
|
||||
|
||||
// Set the cursor
|
||||
e.setSelection(cursor,cursor+chunk.length)
|
||||
}
|
||||
},{
|
||||
name: 'cmdItalic',
|
||||
title: 'Italic',
|
||||
icon: 'icon icon-italic',
|
||||
callback: function(e){
|
||||
// Give/remove * surround the selection
|
||||
var chunk, cursor, selected = e.getSelection(), content = e.getContent()
|
||||
|
||||
if (selected.length == 0) {
|
||||
// Give extra word
|
||||
chunk = 'emphasized text'
|
||||
} else {
|
||||
chunk = selected.text
|
||||
}
|
||||
|
||||
// transform selection and set the cursor into chunked text
|
||||
if (content.substr(selected.start-1,1) == '*'
|
||||
&& content.substr(selected.end,1) == '*' ) {
|
||||
e.setSelection(selected.start-1,selected.end+1)
|
||||
e.replaceSelection(chunk)
|
||||
cursor = selected.start-1
|
||||
} else {
|
||||
e.replaceSelection('*'+chunk+'*')
|
||||
cursor = selected.start+1
|
||||
}
|
||||
|
||||
// Set the cursor
|
||||
e.setSelection(cursor,cursor+chunk.length)
|
||||
}
|
||||
},{
|
||||
name: 'cmdHeading',
|
||||
title: 'Heading',
|
||||
icon: 'icon icon-font',
|
||||
callback: function(e){
|
||||
// Append/remove ### surround the selection
|
||||
var chunk, cursor, selected = e.getSelection(), content = e.getContent(), pointer, prevChar
|
||||
|
||||
if (selected.length == 0) {
|
||||
// Give extra word
|
||||
chunk = 'heading text'
|
||||
} else {
|
||||
chunk = selected.text
|
||||
}
|
||||
|
||||
// transform selection and set the cursor into chunked text
|
||||
if ((pointer = 4, content.substr(selected.start-pointer,pointer) == '### ')
|
||||
|| (pointer = 3, content.substr(selected.start-pointer,pointer) == '###')) {
|
||||
e.setSelection(selected.start-pointer,selected.end)
|
||||
e.replaceSelection(chunk)
|
||||
cursor = selected.start-pointer
|
||||
} else if (prevChar = content.substr(selected.start-1,1), !!prevChar && prevChar != '\n') {
|
||||
e.replaceSelection('\n\n### '+chunk+'\n')
|
||||
cursor = selected.start+6
|
||||
} else {
|
||||
// Empty string before element
|
||||
e.replaceSelection('### '+chunk+'\n')
|
||||
cursor = selected.start+4
|
||||
}
|
||||
|
||||
// Set the cursor
|
||||
e.setSelection(cursor,cursor+chunk.length)
|
||||
}
|
||||
}]
|
||||
},{
|
||||
name: 'groupLink',
|
||||
data: [{
|
||||
name: 'cmdUrl',
|
||||
title: 'URL/Link',
|
||||
icon: 'icon icon-globe',
|
||||
callback: function(e){
|
||||
// Give [] surround the selection and prepend the link
|
||||
var chunk, cursor, selected = e.getSelection(), content = e.getContent(), link
|
||||
|
||||
if (selected.length == 0) {
|
||||
// Give extra word
|
||||
chunk = 'enter link description here'
|
||||
} else {
|
||||
chunk = selected.text
|
||||
}
|
||||
|
||||
link = prompt('Insert Hyperlink','http://')
|
||||
|
||||
if (link != null) {
|
||||
// transform selection and set the cursor into chunked text
|
||||
e.replaceSelection('['+chunk+']('+link+')')
|
||||
cursor = selected.start+1
|
||||
|
||||
// Set the cursor
|
||||
e.setSelection(cursor,cursor+chunk.length)
|
||||
}
|
||||
}
|
||||
},{
|
||||
name: 'cmdImage',
|
||||
title: 'Image',
|
||||
icon: 'icon icon-picture',
|
||||
callback: function(e){
|
||||
// Give ![] surround the selection and prepend the image link
|
||||
var chunk, cursor, selected = e.getSelection(), content = e.getContent(), link
|
||||
|
||||
if (selected.length == 0) {
|
||||
// Give extra word
|
||||
chunk = 'enter image description here'
|
||||
} else {
|
||||
chunk = selected.text
|
||||
}
|
||||
|
||||
link = prompt('Insert Image Hyperlink','http://')
|
||||
|
||||
if (link != null) {
|
||||
// transform selection and set the cursor into chunked text
|
||||
e.replaceSelection('')
|
||||
cursor = selected.start+2
|
||||
|
||||
// Set the next tab
|
||||
e.setNextTab('enter image title here')
|
||||
|
||||
// Set the cursor
|
||||
e.setSelection(cursor,cursor+chunk.length)
|
||||
}
|
||||
}
|
||||
}]
|
||||
},{
|
||||
name: 'groupMisc',
|
||||
data: [{
|
||||
name: 'cmdList',
|
||||
title: 'List',
|
||||
icon: 'icon icon-list',
|
||||
callback: function(e){
|
||||
// Prepend/Give - surround the selection
|
||||
var chunk, cursor, selected = e.getSelection(), content = e.getContent()
|
||||
|
||||
// transform selection and set the cursor into chunked text
|
||||
if (selected.length == 0) {
|
||||
// Give extra word
|
||||
chunk = 'list text here'
|
||||
|
||||
e.replaceSelection('- '+chunk)
|
||||
|
||||
// Set the cursor
|
||||
cursor = selected.start+2
|
||||
} else {
|
||||
if (selected.text.indexOf('\n') < 0) {
|
||||
chunk = selected.text
|
||||
|
||||
e.replaceSelection('- '+chunk)
|
||||
|
||||
// Set the cursor
|
||||
cursor = selected.start+2
|
||||
} else {
|
||||
var list = []
|
||||
|
||||
list = selected.text.split('\n')
|
||||
chunk = list[0]
|
||||
|
||||
$.each(list,function(k,v) {
|
||||
list[k] = '- '+v
|
||||
})
|
||||
|
||||
e.replaceSelection('\n\n'+list.join('\n'))
|
||||
|
||||
// Set the cursor
|
||||
cursor = selected.start+4
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
// Set the cursor
|
||||
e.setSelection(cursor,cursor+chunk.length)
|
||||
}
|
||||
}]
|
||||
},{
|
||||
name: 'groupUtil',
|
||||
data: [{
|
||||
name: 'cmdPreview',
|
||||
toggle: true,
|
||||
title: 'Preview',
|
||||
btnText: 'Preview',
|
||||
btnClass: 'btn btn-inverse',
|
||||
icon: 'icon icon-white icon-search',
|
||||
callback: function(e){
|
||||
// Check the preview mode and toggle based on this flag
|
||||
var isPreview = e.$isPreview,content
|
||||
|
||||
if (isPreview == false) {
|
||||
// Give flag that tell the editor enter preview mode
|
||||
e.showPreview()
|
||||
} else {
|
||||
e.hidePreview()
|
||||
}
|
||||
}
|
||||
}]
|
||||
}]
|
||||
],
|
||||
additionalButtons:[], // Place to hook more buttons by code
|
||||
|
||||
/* Events hook */
|
||||
onShow: function (e) {},
|
||||
onPreview: function (e) {},
|
||||
onSave: function (e) {},
|
||||
onBlur: function (e) {}
|
||||
}
|
||||
|
||||
$.fn.markdown.Constructor = Markdown
|
||||
|
||||
|
||||
/* MARKDOWN NO CONFLICT
|
||||
* ==================== */
|
||||
|
||||
$.fn.markdown.noConflict = function () {
|
||||
$.fn.markdown = old
|
||||
return this
|
||||
}
|
||||
|
||||
/* MARKDOWN GLOBAL FUNCTION & DATA-API
|
||||
* ==================================== */
|
||||
var initMarkdown = function(el) {
|
||||
var $this = el
|
||||
|
||||
if ($this.data('markdown')) {
|
||||
$this.data('markdown').showEditor()
|
||||
return
|
||||
}
|
||||
$this.markdown($this.data())
|
||||
}
|
||||
|
||||
var analyzeMarkdown = function(e) {
|
||||
var blurred = false,
|
||||
el,
|
||||
$docEditor = $(e.currentTarget)
|
||||
|
||||
// Check whether it was editor childs or not
|
||||
if ((e.type == 'focusin' || e.type == 'click') && $docEditor.length == 1 && typeof $docEditor[0] == 'object'){
|
||||
el = $docEditor[0].activeElement
|
||||
if ( ! $(el).data('markdown')) {
|
||||
if (typeof $(el).parent().parent().parent().attr('class') == "undefined"
|
||||
|| $(el).parent().parent().parent().attr('class').indexOf('md-editor') < 0) {
|
||||
if ( typeof $(el).parent().parent().attr('class') == "undefined"
|
||||
|| $(el).parent().parent().attr('class').indexOf('md-editor') < 0) {
|
||||
|
||||
blurred = true
|
||||
}
|
||||
} else {
|
||||
blurred = false
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
if (blurred) {
|
||||
// Blur event
|
||||
$(document).find('.md-editor').each(function(){
|
||||
var parentMd = $(el).parent()
|
||||
|
||||
if ($(this).attr('id') != parentMd.attr('id')) {
|
||||
var attachedMarkdown
|
||||
|
||||
if (attachedMarkdown = $(this).find('textarea').data('markdown'),
|
||||
attachedMarkdown == null) {
|
||||
attachedMarkdown = $(this).find('div[data-provider="markdown-preview"]').data('markdown')
|
||||
}
|
||||
|
||||
if (attachedMarkdown) {
|
||||
attachedMarkdown.blur()
|
||||
}
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
e.stopPropagation()
|
||||
}
|
||||
}
|
||||
|
||||
$(document)
|
||||
.on('click.markdown.data-api', '[data-provide="markdown-editable"]', function (e) {
|
||||
initMarkdown($(this))
|
||||
e.preventDefault()
|
||||
})
|
||||
.on('click', function (e) {
|
||||
analyzeMarkdown(e)
|
||||
})
|
||||
.on('focusin', function (e) {
|
||||
analyzeMarkdown(e)
|
||||
})
|
||||
.ready(function(){
|
||||
$('textarea[data-provide="markdown"]').each(function(){
|
||||
initMarkdown($(this))
|
||||
})
|
||||
})
|
||||
|
||||
}(window.jQuery);
|
||||
@@ -0,0 +1 @@
|
||||
.clearfix{*zoom:1;}.clearfix:before,.clearfix:after{display:table;content:"";line-height:0}.clearfix:after{clear:both}.hide-text{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.input-block-level{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.md-editor{display:block;border:1px solid #ddd}.md-editor>.md-header,.md-editor .md-footer{display:block;padding:6px 4px;background:#fff}.md-editor>.md-preview{background:#fff;border-top:1px dashed #ddd;border-bottom:1px dashed #ddd;min-height:10px}.md-editor>textarea{font-family:Monaco,Menlo,Consolas,"Courier New",monospace;font-size:14px;outline:0;outline:thin dotted \9;margin:0;display:block;padding:0;width:100%;border:0;border-top:1px dashed #ddd;border-bottom:1px dashed #ddd;border-radius:0;box-shadow:none;background:#eee}.md-editor>textarea:focus{box-shadow:none;background:#fff}.md-editor.active{-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(82,168,236,.6);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(82,168,236,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(82,168,236,.6);border-color:rgba(82,168,236,0.8);outline:0;outline:thin dotted \9;-webkit-transition:border linear .2s,box-shadow linear .2s;-moz-transition:border linear .2s,box-shadow linear .2s;-o-transition:border linear .2s,box-shadow linear .2s;transition:border linear .2s,box-shadow linear .2s}
|
||||
File diff suppressed because one or more lines are too long
@@ -0,0 +1,70 @@
|
||||
.highlight .hll { background-color: #ffffcc }
|
||||
.highlight { background: #f0f3f3; }
|
||||
.highlight .c { color: #0099FF; font-style: italic } /* Comment */
|
||||
.highlight .err { color: #AA0000; background-color: #FFAAAA } /* Error */
|
||||
.highlight .k { color: #006699; font-weight: bold } /* Keyword */
|
||||
.highlight .o { color: #555555 } /* Operator */
|
||||
.highlight .cm { color: #0099FF; font-style: italic } /* Comment.Multiline */
|
||||
.highlight .cp { color: #009999 } /* Comment.Preproc */
|
||||
.highlight .c1 { color: #0099FF; font-style: italic } /* Comment.Single */
|
||||
.highlight .cs { color: #0099FF; font-weight: bold; font-style: italic } /* Comment.Special */
|
||||
.highlight .gd { background-color: #FFCCCC; border: 1px solid #CC0000 } /* Generic.Deleted */
|
||||
.highlight .ge { font-style: italic } /* Generic.Emph */
|
||||
.highlight .gr { color: #FF0000 } /* Generic.Error */
|
||||
.highlight .gh { color: #003300; font-weight: bold } /* Generic.Heading */
|
||||
.highlight .gi { background-color: #CCFFCC; border: 1px solid #00CC00 } /* Generic.Inserted */
|
||||
.highlight .go { color: #AAAAAA } /* Generic.Output */
|
||||
.highlight .gp { color: #000099; font-weight: bold } /* Generic.Prompt */
|
||||
.highlight .gs { font-weight: bold } /* Generic.Strong */
|
||||
.highlight .gu { color: #003300; font-weight: bold } /* Generic.Subheading */
|
||||
.highlight .gt { color: #99CC66 } /* Generic.Traceback */
|
||||
.highlight .kc { color: #006699; font-weight: bold } /* Keyword.Constant */
|
||||
.highlight .kd { color: #006699; font-weight: bold } /* Keyword.Declaration */
|
||||
.highlight .kn { color: #006699; font-weight: bold } /* Keyword.Namespace */
|
||||
.highlight .kp { color: #006699 } /* Keyword.Pseudo */
|
||||
.highlight .kr { color: #006699; font-weight: bold } /* Keyword.Reserved */
|
||||
.highlight .kt { color: #007788; font-weight: bold } /* Keyword.Type */
|
||||
.highlight .m { color: #FF6600 } /* Literal.Number */
|
||||
.highlight .s { color: #CC3300 } /* Literal.String */
|
||||
.highlight .na { color: #330099 } /* Name.Attribute */
|
||||
.highlight .nb { color: #336666 } /* Name.Builtin */
|
||||
.highlight .nc { color: #00AA88; font-weight: bold } /* Name.Class */
|
||||
.highlight .no { color: #336600 } /* Name.Constant */
|
||||
.highlight .nd { color: #9999FF } /* Name.Decorator */
|
||||
.highlight .ni { color: #999999; font-weight: bold } /* Name.Entity */
|
||||
.highlight .ne { color: #CC0000; font-weight: bold } /* Name.Exception */
|
||||
.highlight .nf { color: #CC00FF } /* Name.Function */
|
||||
.highlight .nl { color: #9999FF } /* Name.Label */
|
||||
.highlight .nn { color: #00CCFF; font-weight: bold } /* Name.Namespace */
|
||||
.highlight .nt { color: #330099; font-weight: bold } /* Name.Tag */
|
||||
.highlight .nv { color: #003333 } /* Name.Variable */
|
||||
.highlight .ow { color: #000000; font-weight: bold } /* Operator.Word */
|
||||
.highlight .w { color: #bbbbbb } /* Text.Whitespace */
|
||||
.highlight .mf { color: #FF6600 } /* Literal.Number.Float */
|
||||
.highlight .mh { color: #FF6600 } /* Literal.Number.Hex */
|
||||
.highlight .mi { color: #FF6600 } /* Literal.Number.Integer */
|
||||
.highlight .mo { color: #FF6600 } /* Literal.Number.Oct */
|
||||
.highlight .sb { color: #CC3300 } /* Literal.String.Backtick */
|
||||
.highlight .sc { color: #CC3300 } /* Literal.String.Char */
|
||||
.highlight .sd { color: #CC3300; font-style: italic } /* Literal.String.Doc */
|
||||
.highlight .s2 { color: #CC3300 } /* Literal.String.Double */
|
||||
.highlight .se { color: #CC3300; font-weight: bold } /* Literal.String.Escape */
|
||||
.highlight .sh { color: #CC3300 } /* Literal.String.Heredoc */
|
||||
.highlight .si { color: #AA0000 } /* Literal.String.Interpol */
|
||||
.highlight .sx { color: #CC3300 } /* Literal.String.Other */
|
||||
.highlight .sr { color: #33AAAA } /* Literal.String.Regex */
|
||||
.highlight .s1 { color: #CC3300 } /* Literal.String.Single */
|
||||
.highlight .ss { color: #FFCC33 } /* Literal.String.Symbol */
|
||||
.highlight .bp { color: #336666 } /* Name.Builtin.Pseudo */
|
||||
.highlight .vc { color: #003333 } /* Name.Variable.Class */
|
||||
.highlight .vg { color: #003333 } /* Name.Variable.Global */
|
||||
.highlight .vi { color: #003333 } /* Name.Variable.Instance */
|
||||
.highlight .il { color: #FF6600 } /* Literal.Number.Integer.Long */
|
||||
|
||||
.type-csharp .highlight .k { color: #0000FF }
|
||||
.type-csharp .highlight .kt { color: #0000FF }
|
||||
.type-csharp .highlight .nf { color: #000000; font-weight: normal }
|
||||
.type-csharp .highlight .nc { color: #2B91AF }
|
||||
.type-csharp .highlight .nn { color: #000000 }
|
||||
.type-csharp .highlight .s { color: #A31515 }
|
||||
.type-csharp .highlight .sc { color: #A31515 }
|
||||
@@ -0,0 +1,431 @@
|
||||
/*******************************************************************************
|
||||
Slate Theme for GitHub Pages
|
||||
by Jason Costello, @jsncostello
|
||||
*******************************************************************************/
|
||||
|
||||
@import url(pygment_trac.css);
|
||||
|
||||
/*******************************************************************************
|
||||
MeyerWeb Reset
|
||||
*******************************************************************************/
|
||||
|
||||
html, body, div, span, applet, object, iframe,
|
||||
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
|
||||
a, abbr, acronym, address, big, cite, code,
|
||||
del, dfn, em, img, ins, kbd, q, s, samp,
|
||||
small, strike, strong, sub, sup, tt, var,
|
||||
b, u, i, center,
|
||||
dl, dt, dd, ol, ul, li,
|
||||
fieldset, form, label, legend,
|
||||
table, caption, tbody, tfoot, thead, tr, th, td,
|
||||
article, aside, canvas, details, embed,
|
||||
figure, figcaption, footer, header, hgroup,
|
||||
menu, nav, output, ruby, section, summary,
|
||||
time, mark, audio, video {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
border: 0;
|
||||
font: inherit;
|
||||
vertical-align: baseline;
|
||||
}
|
||||
|
||||
/* HTML5 display-role reset for older browsers */
|
||||
article, aside, details, figcaption, figure,
|
||||
footer, header, hgroup, menu, nav, section {
|
||||
display: block;
|
||||
}
|
||||
|
||||
ol, ul {
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
blockquote, q {
|
||||
}
|
||||
|
||||
table {
|
||||
border-collapse: collapse;
|
||||
border-spacing: 0;
|
||||
}
|
||||
|
||||
a:focus {
|
||||
outline: none;
|
||||
}
|
||||
|
||||
/*******************************************************************************
|
||||
Theme Styles
|
||||
*******************************************************************************/
|
||||
|
||||
body {
|
||||
box-sizing: border-box;
|
||||
color:#373737;
|
||||
background: #212121;
|
||||
font-size: 16px;
|
||||
font-family: 'Myriad Pro', Calibri, Helvetica, Arial, sans-serif;
|
||||
line-height: 1.5;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
}
|
||||
|
||||
h1, h2, h3, h4, h5, h6 {
|
||||
margin: 10px 0;
|
||||
font-weight: 700;
|
||||
color:#222222;
|
||||
font-family: 'Lucida Grande', 'Calibri', Helvetica, Arial, sans-serif;
|
||||
letter-spacing: -1px;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 36px;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
h2 {
|
||||
padding-bottom: 10px;
|
||||
font-size: 32px;
|
||||
background: url('../img/bg_hr.png') repeat-x bottom;
|
||||
}
|
||||
|
||||
h3 {
|
||||
font-size: 24px;
|
||||
}
|
||||
|
||||
h4 {
|
||||
font-size: 21px;
|
||||
}
|
||||
|
||||
h5 {
|
||||
font-size: 18px;
|
||||
}
|
||||
|
||||
h6 {
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
p {
|
||||
margin: 10px 0 15px 0;
|
||||
}
|
||||
|
||||
footer p {
|
||||
color: #f2f2f2;
|
||||
}
|
||||
|
||||
a {
|
||||
text-decoration: none;
|
||||
color: #007edf;
|
||||
text-shadow: none;
|
||||
|
||||
transition: color 0.5s ease;
|
||||
transition: text-shadow 0.5s ease;
|
||||
-webkit-transition: color 0.5s ease;
|
||||
-webkit-transition: text-shadow 0.5s ease;
|
||||
-moz-transition: color 0.5s ease;
|
||||
-moz-transition: text-shadow 0.5s ease;
|
||||
-o-transition: color 0.5s ease;
|
||||
-o-transition: text-shadow 0.5s ease;
|
||||
-ms-transition: color 0.5s ease;
|
||||
-ms-transition: text-shadow 0.5s ease;
|
||||
}
|
||||
|
||||
#main_content a:hover {
|
||||
color: #0069ba;
|
||||
text-shadow: #0090ff 0px 0px 2px;
|
||||
}
|
||||
|
||||
footer a:hover {
|
||||
color: #43adff;
|
||||
text-shadow: #0090ff 0px 0px 2px;
|
||||
}
|
||||
|
||||
em {
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
strong {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
img {
|
||||
position: relative;
|
||||
margin: 0 auto;
|
||||
max-width: 739px;
|
||||
padding: 5px;
|
||||
margin: 10px 0 10px 0;
|
||||
border: 1px solid #ebebeb;
|
||||
|
||||
box-shadow: 0 0 5px #ebebeb;
|
||||
-webkit-box-shadow: 0 0 5px #ebebeb;
|
||||
-moz-box-shadow: 0 0 5px #ebebeb;
|
||||
-o-box-shadow: 0 0 5px #ebebeb;
|
||||
-ms-box-shadow: 0 0 5px #ebebeb;
|
||||
}
|
||||
|
||||
pre, code {
|
||||
width: 100%;
|
||||
color: #222;
|
||||
background-color: #fff;
|
||||
|
||||
font-family: Monaco, "Bitstream Vera Sans Mono", "Lucida Console", Terminal, monospace;
|
||||
font-size: 14px;
|
||||
|
||||
border-radius: 2px;
|
||||
-moz-border-radius: 2px;
|
||||
-webkit-border-radius: 2px;
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
pre {
|
||||
width: 100%;
|
||||
padding: 10px;
|
||||
box-shadow: 0 0 10px rgba(0,0,0,.1);
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
code {
|
||||
padding: 3px;
|
||||
margin: 0 3px;
|
||||
box-shadow: 0 0 10px rgba(0,0,0,.1);
|
||||
}
|
||||
|
||||
pre code {
|
||||
display: block;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
blockquote {
|
||||
color: #666;
|
||||
margin-bottom: 20px;
|
||||
padding: 0 0 0 20px;
|
||||
border-left: 3px solid #bbb;
|
||||
}
|
||||
|
||||
ul, ol, dl {
|
||||
margin-bottom: 15px
|
||||
}
|
||||
|
||||
ul li {
|
||||
list-style: inside;
|
||||
padding-left: 20px;
|
||||
}
|
||||
|
||||
ol li {
|
||||
list-style: decimal inside;
|
||||
padding-left: 20px;
|
||||
}
|
||||
|
||||
dl dt {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
dl dd {
|
||||
padding-left: 20px;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
dl p {
|
||||
padding-left: 20px;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
hr {
|
||||
height: 1px;
|
||||
margin-bottom: 5px;
|
||||
border: none;
|
||||
background: url('../img/bg_hr.png') repeat-x center;
|
||||
}
|
||||
|
||||
table {
|
||||
border: 1px solid #373737;
|
||||
margin-bottom: 20px;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
th {
|
||||
font-family: 'Lucida Grande', 'Helvetica Neue', Helvetica, Arial, sans-serif;
|
||||
padding: 10px;
|
||||
background: #373737;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
td {
|
||||
padding: 10px;
|
||||
border: 1px solid #373737;
|
||||
}
|
||||
|
||||
form {
|
||||
background: #f2f2f2;
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
img {
|
||||
width: 100%;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
/*******************************************************************************
|
||||
Full-Width Styles
|
||||
*******************************************************************************/
|
||||
|
||||
.outer {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.inner {
|
||||
position: relative;
|
||||
max-width: 640px;
|
||||
padding: 20px 10px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
#forkme_banner {
|
||||
display: block;
|
||||
position: absolute;
|
||||
top:0;
|
||||
right: 10px;
|
||||
z-index: 10;
|
||||
padding: 10px 50px 10px 10px;
|
||||
color: #fff;
|
||||
background: url('../img/blacktocat.png') #0090ff no-repeat 95% 50%;
|
||||
font-weight: 700;
|
||||
box-shadow: 0 0 10px rgba(0,0,0,.5);
|
||||
border-bottom-left-radius: 2px;
|
||||
border-bottom-right-radius: 2px;
|
||||
}
|
||||
|
||||
#header_wrap {
|
||||
background: #212121;
|
||||
background: -moz-linear-gradient(top, #373737, #212121);
|
||||
background: -webkit-linear-gradient(top, #373737, #212121);
|
||||
background: -ms-linear-gradient(top, #373737, #212121);
|
||||
background: -o-linear-gradient(top, #373737, #212121);
|
||||
background: linear-gradient(top, #373737, #212121);
|
||||
}
|
||||
|
||||
#header_wrap .inner {
|
||||
padding: 50px 10px 30px 10px;
|
||||
}
|
||||
|
||||
#project_title {
|
||||
margin: 0;
|
||||
color: #fff;
|
||||
font-size: 42px;
|
||||
font-weight: 700;
|
||||
text-shadow: #111 0px 0px 10px;
|
||||
}
|
||||
|
||||
#project_tagline {
|
||||
color: #fff;
|
||||
font-size: 24px;
|
||||
font-weight: 300;
|
||||
background: none;
|
||||
text-shadow: #111 0px 0px 10px;
|
||||
}
|
||||
|
||||
#downloads {
|
||||
position: absolute;
|
||||
width: 210px;
|
||||
z-index: 10;
|
||||
bottom: -40px;
|
||||
right: 0;
|
||||
height: 70px;
|
||||
background: url('../img/icon_download.png') no-repeat 0% 90%;
|
||||
}
|
||||
|
||||
.zip_download_link {
|
||||
display: block;
|
||||
float: right;
|
||||
width: 90px;
|
||||
height:70px;
|
||||
text-indent: -5000px;
|
||||
overflow: hidden;
|
||||
background: url(../img/sprite_download.png) no-repeat bottom left;
|
||||
}
|
||||
|
||||
.tar_download_link {
|
||||
display: block;
|
||||
float: right;
|
||||
width: 90px;
|
||||
height:70px;
|
||||
text-indent: -5000px;
|
||||
overflow: hidden;
|
||||
background: url(../img/sprite_download.png) no-repeat bottom right;
|
||||
margin-left: 10px;
|
||||
}
|
||||
|
||||
.zip_download_link:hover {
|
||||
background: url(../img/sprite_download.png) no-repeat top left;
|
||||
}
|
||||
|
||||
.tar_download_link:hover {
|
||||
background: url(../img/sprite_download.png) no-repeat top right;
|
||||
}
|
||||
|
||||
#main_content_wrap {
|
||||
background: #f2f2f2;
|
||||
border-top: 1px solid #111;
|
||||
border-bottom: 1px solid #111;
|
||||
}
|
||||
|
||||
#main_content {
|
||||
padding-top: 40px;
|
||||
}
|
||||
|
||||
#footer_wrap {
|
||||
background: #212121;
|
||||
}
|
||||
|
||||
|
||||
|
||||
/*******************************************************************************
|
||||
Small Device Styles
|
||||
*******************************************************************************/
|
||||
|
||||
@media screen and (max-width: 480px) {
|
||||
body {
|
||||
font-size:14px;
|
||||
}
|
||||
|
||||
#downloads {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.inner {
|
||||
min-width: 320px;
|
||||
max-width: 480px;
|
||||
}
|
||||
|
||||
#project_title {
|
||||
font-size: 32px;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 28px;
|
||||
}
|
||||
|
||||
h2 {
|
||||
font-size: 24px;
|
||||
}
|
||||
|
||||
h3 {
|
||||
font-size: 21px;
|
||||
}
|
||||
|
||||
h4 {
|
||||
font-size: 18px;
|
||||
}
|
||||
|
||||
h5 {
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
h6 {
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
code, pre {
|
||||
min-width: 320px;
|
||||
max-width: 480px;
|
||||
font-size: 11px;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,993 @@
|
||||
/* ===================================================
|
||||
* bootstrap-markdown.js v1.1.4
|
||||
* http://github.com/toopay/bootstrap-markdown
|
||||
* ===================================================
|
||||
* Copyright 2013 Taufan Aditya
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
* ========================================================== */
|
||||
|
||||
!function ($) {
|
||||
|
||||
"use strict"; // jshint ;_;
|
||||
|
||||
|
||||
/* MARKDOWN CLASS DEFINITION
|
||||
* ========================== */
|
||||
|
||||
var Markdown = function (element, options) {
|
||||
// Class Properties
|
||||
this.$ns = 'bootstrap-markdown'
|
||||
this.$element = $(element)
|
||||
this.$editable = {el:null, type:null,attrKeys:[], attrValues:[], content:null}
|
||||
this.$options = $.extend(true, {}, $.fn.markdown.defaults, options)
|
||||
this.$oldContent = null
|
||||
this.$isPreview = false
|
||||
this.$editor = null
|
||||
this.$textarea = null
|
||||
this.$handler = []
|
||||
this.$callback = []
|
||||
this.$nextTab = []
|
||||
|
||||
this.showEditor()
|
||||
}
|
||||
|
||||
Markdown.prototype = {
|
||||
|
||||
constructor: Markdown
|
||||
|
||||
, __alterButtons: function(name,alter) {
|
||||
var handler = this.$handler, isAll = (name == 'all'),that = this
|
||||
|
||||
$.each(handler,function(k,v) {
|
||||
var halt = true
|
||||
if (isAll) {
|
||||
halt = false
|
||||
} else {
|
||||
halt = v.indexOf(name) < 0
|
||||
}
|
||||
|
||||
if (halt == false) {
|
||||
alter(that.$editor.find('button[data-handler="'+v+'"]'))
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
, __buildButtons: function(buttonsArray, container) {
|
||||
var i,
|
||||
ns = this.$ns,
|
||||
handler = this.$handler,
|
||||
callback = this.$callback
|
||||
|
||||
for (i=0;i<buttonsArray.length;i++) {
|
||||
// Build each group container
|
||||
var y, btnGroups = buttonsArray[i]
|
||||
for (y=0;y<btnGroups.length;y++) {
|
||||
// Build each button group
|
||||
var z,
|
||||
buttons = btnGroups[y].data,
|
||||
btnGroupContainer = $('<div/>', {
|
||||
'class': 'btn-group'
|
||||
})
|
||||
|
||||
for (z=0;z<buttons.length;z++) {
|
||||
var button = buttons[z],
|
||||
buttonToggle = '',
|
||||
buttonHandler = ns+'-'+button.name,
|
||||
btnText = button.btnText ? button.btnText : '',
|
||||
btnClass = button.btnClass ? button.btnClass : 'btn',
|
||||
tabIndex = button.tabIndex ? button.tabIndex : '-1'
|
||||
|
||||
if (button.toggle == true) {
|
||||
buttonToggle = ' data-toggle="button"'
|
||||
}
|
||||
|
||||
// Attach the button object
|
||||
btnGroupContainer.append('<button class="'
|
||||
+btnClass
|
||||
+' btn-small" title="'
|
||||
+button.title
|
||||
+'" tabindex="'
|
||||
+tabIndex
|
||||
+'" data-provider="'
|
||||
+ns
|
||||
+'" data-handler="'
|
||||
+buttonHandler
|
||||
+'"'
|
||||
+buttonToggle
|
||||
+'><i class="'
|
||||
+button.icon
|
||||
+'"></i> '
|
||||
+btnText
|
||||
+'</button>')
|
||||
|
||||
// Register handler and callback
|
||||
handler.push(buttonHandler)
|
||||
callback.push(button.callback)
|
||||
}
|
||||
|
||||
// Attach the button group into container dom
|
||||
container.append(btnGroupContainer)
|
||||
}
|
||||
}
|
||||
|
||||
return container
|
||||
}
|
||||
, __setListener: function() {
|
||||
// Set size and resizable Properties
|
||||
var hasRows = typeof this.$textarea.attr('rows') != 'undefined',
|
||||
maxRows = this.$textarea.val().split("\n").length > 5 ? this.$textarea.val().split("\n").length : '5',
|
||||
rowsVal = hasRows ? this.$textarea.attr('rows') : maxRows
|
||||
|
||||
this.$textarea.attr('rows',rowsVal)
|
||||
this.$textarea.css('resize','none')
|
||||
|
||||
this.$textarea
|
||||
.on('focus', $.proxy(this.focus, this))
|
||||
.on('keypress', $.proxy(this.keypress, this))
|
||||
.on('keyup', $.proxy(this.keyup, this))
|
||||
|
||||
if (this.eventSupported('keydown')) {
|
||||
this.$textarea.on('keydown', $.proxy(this.keydown, this))
|
||||
}
|
||||
|
||||
// Re-attach markdown data
|
||||
this.$textarea.data('markdown',this)
|
||||
}
|
||||
|
||||
, __handle: function(e) {
|
||||
var target = $(e.currentTarget),
|
||||
handler = this.$handler,
|
||||
callback = this.$callback,
|
||||
handlerName = target.attr('data-handler'),
|
||||
callbackIndex = handler.indexOf(handlerName),
|
||||
callbackHandler = callback[callbackIndex]
|
||||
|
||||
// Trigger the focusin
|
||||
$(e.currentTarget).focus()
|
||||
|
||||
callbackHandler(this)
|
||||
|
||||
// Unless it was the save handler,
|
||||
// focusin the textarea
|
||||
if (handlerName.indexOf('cmdSave') < 0) {
|
||||
this.$textarea.focus()
|
||||
}
|
||||
|
||||
e.preventDefault()
|
||||
}
|
||||
|
||||
, showEditor: function() {
|
||||
var instance = this,
|
||||
textarea,
|
||||
ns = this.$ns,
|
||||
container = this.$element,
|
||||
originalHeigth = container.css('height'),
|
||||
originalWidth = container.css('width'),
|
||||
editable = this.$editable,
|
||||
handler = this.$handler,
|
||||
callback = this.$callback,
|
||||
options = this.$options,
|
||||
editor = $( '<div/>', {
|
||||
'class': 'md-editor',
|
||||
click: function() {
|
||||
instance.focus()
|
||||
}
|
||||
})
|
||||
|
||||
// Prepare the editor
|
||||
if (this.$editor == null) {
|
||||
// Create the panel
|
||||
var editorHeader = $('<div/>', {
|
||||
'class': 'md-header'
|
||||
})
|
||||
|
||||
// Build the main buttons
|
||||
if (options.buttons.length > 0) {
|
||||
editorHeader = this.__buildButtons(options.buttons, editorHeader)
|
||||
}
|
||||
|
||||
// Build the additional buttons
|
||||
if (options.additionalButtons.length > 0) {
|
||||
editorHeader = this.__buildButtons(options.additionalButtons, editorHeader)
|
||||
}
|
||||
|
||||
editor.append(editorHeader)
|
||||
|
||||
// Wrap the textarea
|
||||
if (container.is('textarea')) {
|
||||
container.before(editor)
|
||||
textarea = container
|
||||
textarea.addClass('md-input')
|
||||
editor.append(textarea)
|
||||
} else {
|
||||
var rawContent = (typeof toMarkdown == 'function') ? toMarkdown(container.html()) : container.html(),
|
||||
currentContent = $.trim(rawContent)
|
||||
|
||||
// This is some arbitrary content that could be edited
|
||||
textarea = $('<textarea/>', {
|
||||
'class': 'md-input',
|
||||
'val' : currentContent
|
||||
})
|
||||
|
||||
editor.append(textarea)
|
||||
|
||||
// Save the editable
|
||||
editable.el = container
|
||||
editable.type = container.prop('tagName').toLowerCase()
|
||||
editable.content = container.html()
|
||||
|
||||
$(container[0].attributes).each(function(){
|
||||
editable.attrKeys.push(this.nodeName)
|
||||
editable.attrValues.push(this.nodeValue)
|
||||
})
|
||||
|
||||
// Set editor to blocked the original container
|
||||
container.replaceWith(editor)
|
||||
}
|
||||
|
||||
// Create the footer if savable
|
||||
if (options.savable) {
|
||||
var editorFooter = $('<div/>', {
|
||||
'class': 'md-footer'
|
||||
}),
|
||||
saveHandler = 'cmdSave'
|
||||
|
||||
// Register handler and callback
|
||||
handler.push(saveHandler)
|
||||
callback.push(options.onSave)
|
||||
|
||||
editorFooter.append('<button class="btn btn-success" data-provider="'
|
||||
+ns
|
||||
+'" data-handler="'
|
||||
+saveHandler
|
||||
+'"><i class="icon icon-white icon-ok"></i> Save</button>')
|
||||
|
||||
editor.append(editorFooter)
|
||||
}
|
||||
|
||||
// Set width/height
|
||||
$.each(['height','width'],function(k,attr){
|
||||
if (options[attr] != 'inherit') {
|
||||
if (jQuery.isNumeric(options[attr])) {
|
||||
editor.css(attr,options[attr]+'px')
|
||||
} else {
|
||||
editor.addClass(options[attr])
|
||||
}
|
||||
}
|
||||
})
|
||||
|
||||
// Reference
|
||||
this.$editor = editor
|
||||
this.$textarea = textarea
|
||||
this.$editable = editable
|
||||
this.$oldContent = this.getContent()
|
||||
|
||||
this.__setListener()
|
||||
|
||||
// Set editor attributes, data short-hand API and listener
|
||||
this.$editor.attr('id',(new Date).getTime())
|
||||
this.$editor.on('click', '[data-provider="bootstrap-markdown"]', $.proxy(this.__handle, this))
|
||||
|
||||
} else {
|
||||
this.$editor.show()
|
||||
}
|
||||
|
||||
if (options.autofocus) {
|
||||
this.$textarea.focus()
|
||||
this.$editor.addClass('active')
|
||||
}
|
||||
|
||||
// Trigger the onShow hook
|
||||
options.onShow(this)
|
||||
|
||||
return this
|
||||
}
|
||||
|
||||
, showPreview: function() {
|
||||
var options = this.$options,
|
||||
callbackContent = options.onPreview(this), // Try to get the content from callback
|
||||
container = this.$textarea,
|
||||
afterContainer = container.next(),
|
||||
replacementContainer = $('<div/>',{'class':'md-preview','data-provider':'markdown-preview'}),
|
||||
content
|
||||
|
||||
// Give flag that tell the editor enter preview mode
|
||||
this.$isPreview = true
|
||||
// Disable all buttons
|
||||
this.disableButtons('all').enableButtons('cmdPreview')
|
||||
|
||||
if (typeof callbackContent == 'string') {
|
||||
// Set the content based by callback content
|
||||
content = callbackContent
|
||||
} else {
|
||||
// Set the content
|
||||
content = (typeof markdown == 'object') ? markdown.toHTML(container.val()) : container.val()
|
||||
}
|
||||
|
||||
// Build preview element
|
||||
replacementContainer.html(content)
|
||||
|
||||
if (afterContainer && afterContainer.attr('class') == 'md-footer') {
|
||||
// If there is footer element, insert the preview container before it
|
||||
replacementContainer.insertBefore(afterContainer)
|
||||
} else {
|
||||
// Otherwise, just append it after textarea
|
||||
container.parent().append(replacementContainer)
|
||||
}
|
||||
|
||||
// Hide the last-active textarea
|
||||
container.hide()
|
||||
|
||||
// Attach the editor instances
|
||||
replacementContainer.data('markdown',this)
|
||||
|
||||
return this
|
||||
}
|
||||
|
||||
, hidePreview: function() {
|
||||
// Give flag that tell the editor quit preview mode
|
||||
this.$isPreview = false
|
||||
|
||||
// Obtain the preview container
|
||||
var container = this.$editor.find('div[data-provider="markdown-preview"]')
|
||||
|
||||
// Remove the preview container
|
||||
container.remove()
|
||||
|
||||
// Enable all buttons
|
||||
this.enableButtons('all')
|
||||
|
||||
// Back to the editor
|
||||
this.$textarea.show()
|
||||
this.__setListener()
|
||||
|
||||
return this
|
||||
}
|
||||
|
||||
, isDirty: function() {
|
||||
return this.$oldContent != this.getContent()
|
||||
}
|
||||
|
||||
, getContent: function() {
|
||||
return this.$textarea.val()
|
||||
}
|
||||
|
||||
, setContent: function(content) {
|
||||
this.$textarea.val(content)
|
||||
|
||||
return this
|
||||
}
|
||||
|
||||
, findSelection: function(chunk) {
|
||||
var content = this.getContent(), startChunkPosition
|
||||
|
||||
if (startChunkPosition = content.indexOf(chunk), startChunkPosition >= 0 && chunk.length > 0) {
|
||||
var oldSelection = this.getSelection(), selection
|
||||
|
||||
this.setSelection(startChunkPosition,startChunkPosition+chunk.length)
|
||||
selection = this.getSelection()
|
||||
|
||||
this.setSelection(oldSelection.start,oldSelection.end)
|
||||
|
||||
return selection
|
||||
} else {
|
||||
return null
|
||||
}
|
||||
}
|
||||
|
||||
, getSelection: function() {
|
||||
|
||||
var e = this.$textarea[0]
|
||||
|
||||
return (
|
||||
|
||||
('selectionStart' in e && function() {
|
||||
var l = e.selectionEnd - e.selectionStart
|
||||
return { start: e.selectionStart, end: e.selectionEnd, length: l, text: e.value.substr(e.selectionStart, l) }
|
||||
}) ||
|
||||
|
||||
/* browser not supported */
|
||||
function() {
|
||||
return null
|
||||
}
|
||||
|
||||
)()
|
||||
|
||||
}
|
||||
|
||||
, setSelection: function(start,end) {
|
||||
|
||||
var e = this.$textarea[0]
|
||||
|
||||
return (
|
||||
|
||||
('selectionStart' in e && function() {
|
||||
e.selectionStart = start
|
||||
e.selectionEnd = end
|
||||
return
|
||||
}) ||
|
||||
|
||||
/* browser not supported */
|
||||
function() {
|
||||
return null
|
||||
}
|
||||
|
||||
)()
|
||||
|
||||
}
|
||||
|
||||
, replaceSelection: function(text) {
|
||||
|
||||
var e = this.$textarea[0]
|
||||
|
||||
return (
|
||||
|
||||
('selectionStart' in e && function() {
|
||||
e.value = e.value.substr(0, e.selectionStart) + text + e.value.substr(e.selectionEnd, e.value.length)
|
||||
// Set cursor to the last replacement end
|
||||
e.selectionStart = e.value.length
|
||||
return this
|
||||
}) ||
|
||||
|
||||
/* browser not supported */
|
||||
function() {
|
||||
e.value += text
|
||||
return jQuery(e)
|
||||
}
|
||||
|
||||
)()
|
||||
|
||||
}
|
||||
|
||||
, getNextTab: function() {
|
||||
// Shift the nextTab
|
||||
if (this.$nextTab.length == 0) {
|
||||
return null
|
||||
} else {
|
||||
var nextTab, tab = this.$nextTab.shift()
|
||||
|
||||
if (typeof tab == 'function') {
|
||||
nextTab = tab()
|
||||
} else if (typeof tab == 'object' && tab.length > 0) {
|
||||
nextTab = tab
|
||||
}
|
||||
|
||||
return nextTab
|
||||
}
|
||||
}
|
||||
|
||||
, setNextTab: function(start,end) {
|
||||
// Push new selection into nextTab collections
|
||||
if (typeof start == 'string') {
|
||||
var that = this
|
||||
this.$nextTab.push(function(){
|
||||
return that.findSelection(start)
|
||||
})
|
||||
} else if (typeof start == 'numeric' && typeof end == 'numeric') {
|
||||
var oldSelection = this.getSelection()
|
||||
|
||||
this.setSelection(start,end)
|
||||
this.$nextTab.push(this.getSelection())
|
||||
|
||||
this.setSelection(oldSelection.start,oldSelection.end)
|
||||
}
|
||||
|
||||
return
|
||||
}
|
||||
|
||||
, enableButtons: function(name) {
|
||||
var alter = function (el) {
|
||||
el.removeAttr('disabled')
|
||||
}
|
||||
|
||||
this.__alterButtons(name,alter)
|
||||
|
||||
return this
|
||||
}
|
||||
|
||||
, disableButtons: function(name) {
|
||||
var alter = function (el) {
|
||||
el.attr('disabled','disabled')
|
||||
}
|
||||
|
||||
this.__alterButtons(name,alter)
|
||||
|
||||
return this
|
||||
}
|
||||
|
||||
, eventSupported: function(eventName) {
|
||||
var isSupported = eventName in this.$element
|
||||
if (!isSupported) {
|
||||
this.$element.setAttribute(eventName, 'return;')
|
||||
isSupported = typeof this.$element[eventName] === 'function'
|
||||
}
|
||||
return isSupported
|
||||
}
|
||||
|
||||
, keydown: function (e) {
|
||||
this.suppressKeyPressRepeat = ~$.inArray(e.keyCode, [40,38,9,13,27])
|
||||
this.keyup(e)
|
||||
}
|
||||
|
||||
, keypress: function (e) {
|
||||
if (this.suppressKeyPressRepeat) return
|
||||
this.keyup(e)
|
||||
}
|
||||
|
||||
, keyup: function (e) {
|
||||
var blocked = false
|
||||
switch(e.keyCode) {
|
||||
case 40: // down arrow
|
||||
case 38: // up arrow
|
||||
case 16: // shift
|
||||
case 17: // ctrl
|
||||
case 18: // alt
|
||||
break
|
||||
|
||||
case 9: // tab
|
||||
var nextTab
|
||||
if (nextTab = this.getNextTab(),nextTab != null) {
|
||||
// Get the nextTab if exists
|
||||
var that = this
|
||||
setTimeout(function(){
|
||||
that.setSelection(nextTab.start,nextTab.end)
|
||||
},500)
|
||||
|
||||
blocked = true
|
||||
} else {
|
||||
// The next tab memory contains nothing...
|
||||
// check the cursor position to determine tab action
|
||||
var cursor = this.getSelection()
|
||||
|
||||
if (cursor.start == cursor.end && cursor.end == this.getContent().length) {
|
||||
// The cursor already reach the end of the content
|
||||
blocked = false
|
||||
|
||||
} else {
|
||||
// Put the cursor to the end
|
||||
this.setSelection(this.getContent().length,this.getContent().length)
|
||||
|
||||
blocked = true
|
||||
}
|
||||
}
|
||||
|
||||
break
|
||||
|
||||
case 13: // enter
|
||||
case 27: // escape
|
||||
blocked = false
|
||||
break
|
||||
|
||||
default:
|
||||
blocked = false
|
||||
}
|
||||
|
||||
if (blocked) {
|
||||
e.stopPropagation()
|
||||
e.preventDefault()
|
||||
}
|
||||
}
|
||||
|
||||
, focus: function (e) {
|
||||
var options = this.$options,
|
||||
isHideable = options.hideable,
|
||||
editor = this.$editor
|
||||
|
||||
editor.addClass('active')
|
||||
|
||||
// Blur other markdown(s)
|
||||
$(document).find('.md-editor').each(function(){
|
||||
if ($(this).attr('id') != editor.attr('id')) {
|
||||
var attachedMarkdown
|
||||
|
||||
if (attachedMarkdown = $(this).find('textarea').data('markdown'),
|
||||
attachedMarkdown == null) {
|
||||
attachedMarkdown = $(this).find('div[data-provider="markdown-preview"]').data('markdown')
|
||||
}
|
||||
|
||||
if (attachedMarkdown) {
|
||||
attachedMarkdown.blur()
|
||||
}
|
||||
}
|
||||
})
|
||||
|
||||
return this
|
||||
}
|
||||
|
||||
, blur: function (e) {
|
||||
var options = this.$options,
|
||||
isHideable = options.hideable,
|
||||
editor = this.$editor,
|
||||
editable = this.$editable
|
||||
|
||||
if (editor.hasClass('active') || this.$element.parent().length == 0) {
|
||||
editor.removeClass('active')
|
||||
|
||||
if (isHideable) {
|
||||
|
||||
// Check for editable elements
|
||||
if (editable.el != null) {
|
||||
// Build the original element
|
||||
var oldElement = $('<'+editable.type+'/>'),
|
||||
content = this.getContent(),
|
||||
currentContent = (typeof markdown == 'object') ? markdown.toHTML(content) : content
|
||||
|
||||
$(editable.attrKeys).each(function(k,v) {
|
||||
oldElement.attr(editable.attrKeys[k],editable.attrValues[k])
|
||||
})
|
||||
|
||||
// Get the editor content
|
||||
oldElement.html(currentContent)
|
||||
|
||||
editor.replaceWith(oldElement)
|
||||
} else {
|
||||
editor.hide()
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
// Trigger the onBlur hook
|
||||
options.onBlur(this)
|
||||
}
|
||||
|
||||
return this
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
/* MARKDOWN PLUGIN DEFINITION
|
||||
* ========================== */
|
||||
|
||||
var old = $.fn.markdown
|
||||
|
||||
$.fn.markdown = function (option) {
|
||||
return this.each(function () {
|
||||
var $this = $(this)
|
||||
, data = $this.data('markdown')
|
||||
, options = typeof option == 'object' && option
|
||||
if (!data) $this.data('markdown', (data = new Markdown(this, options)))
|
||||
})
|
||||
}
|
||||
|
||||
$.fn.markdown.defaults = {
|
||||
/* Editor Properties */
|
||||
autofocus: false,
|
||||
hideable: false,
|
||||
savable:false,
|
||||
width: 'inherit',
|
||||
height: 'inherit',
|
||||
|
||||
/* Buttons Properties */
|
||||
buttons: [
|
||||
[{
|
||||
name: 'groupFont',
|
||||
data: [{
|
||||
name: 'cmdBold',
|
||||
title: 'Bold',
|
||||
icon: 'icon icon-bold',
|
||||
callback: function(e){
|
||||
// Give/remove ** surround the selection
|
||||
var chunk, cursor, selected = e.getSelection(), content = e.getContent()
|
||||
|
||||
if (selected.length == 0) {
|
||||
// Give extra word
|
||||
chunk = 'strong text'
|
||||
} else {
|
||||
chunk = selected.text
|
||||
}
|
||||
|
||||
// transform selection and set the cursor into chunked text
|
||||
if (content.substr(selected.start-2,2) == '**'
|
||||
&& content.substr(selected.end,2) == '**' ) {
|
||||
e.setSelection(selected.start-2,selected.end+2)
|
||||
e.replaceSelection(chunk)
|
||||
cursor = selected.start-2
|
||||
} else {
|
||||
e.replaceSelection('**'+chunk+'**')
|
||||
cursor = selected.start+2
|
||||
}
|
||||
|
||||
// Set the cursor
|
||||
e.setSelection(cursor,cursor+chunk.length)
|
||||
}
|
||||
},{
|
||||
name: 'cmdItalic',
|
||||
title: 'Italic',
|
||||
icon: 'icon icon-italic',
|
||||
callback: function(e){
|
||||
// Give/remove * surround the selection
|
||||
var chunk, cursor, selected = e.getSelection(), content = e.getContent()
|
||||
|
||||
if (selected.length == 0) {
|
||||
// Give extra word
|
||||
chunk = 'emphasized text'
|
||||
} else {
|
||||
chunk = selected.text
|
||||
}
|
||||
|
||||
// transform selection and set the cursor into chunked text
|
||||
if (content.substr(selected.start-1,1) == '*'
|
||||
&& content.substr(selected.end,1) == '*' ) {
|
||||
e.setSelection(selected.start-1,selected.end+1)
|
||||
e.replaceSelection(chunk)
|
||||
cursor = selected.start-1
|
||||
} else {
|
||||
e.replaceSelection('*'+chunk+'*')
|
||||
cursor = selected.start+1
|
||||
}
|
||||
|
||||
// Set the cursor
|
||||
e.setSelection(cursor,cursor+chunk.length)
|
||||
}
|
||||
},{
|
||||
name: 'cmdHeading',
|
||||
title: 'Heading',
|
||||
icon: 'icon icon-font',
|
||||
callback: function(e){
|
||||
// Append/remove ### surround the selection
|
||||
var chunk, cursor, selected = e.getSelection(), content = e.getContent(), pointer, prevChar
|
||||
|
||||
if (selected.length == 0) {
|
||||
// Give extra word
|
||||
chunk = 'heading text'
|
||||
} else {
|
||||
chunk = selected.text
|
||||
}
|
||||
|
||||
// transform selection and set the cursor into chunked text
|
||||
if ((pointer = 4, content.substr(selected.start-pointer,pointer) == '### ')
|
||||
|| (pointer = 3, content.substr(selected.start-pointer,pointer) == '###')) {
|
||||
e.setSelection(selected.start-pointer,selected.end)
|
||||
e.replaceSelection(chunk)
|
||||
cursor = selected.start-pointer
|
||||
} else if (prevChar = content.substr(selected.start-1,1), !!prevChar && prevChar != '\n') {
|
||||
e.replaceSelection('\n\n### '+chunk+'\n')
|
||||
cursor = selected.start+6
|
||||
} else {
|
||||
// Empty string before element
|
||||
e.replaceSelection('### '+chunk+'\n')
|
||||
cursor = selected.start+4
|
||||
}
|
||||
|
||||
// Set the cursor
|
||||
e.setSelection(cursor,cursor+chunk.length)
|
||||
}
|
||||
}]
|
||||
},{
|
||||
name: 'groupLink',
|
||||
data: [{
|
||||
name: 'cmdUrl',
|
||||
title: 'URL/Link',
|
||||
icon: 'icon icon-globe',
|
||||
callback: function(e){
|
||||
// Give [] surround the selection and prepend the link
|
||||
var chunk, cursor, selected = e.getSelection(), content = e.getContent(), link
|
||||
|
||||
if (selected.length == 0) {
|
||||
// Give extra word
|
||||
chunk = 'enter link description here'
|
||||
} else {
|
||||
chunk = selected.text
|
||||
}
|
||||
|
||||
link = prompt('Insert Hyperlink','http://')
|
||||
|
||||
if (link != null) {
|
||||
// transform selection and set the cursor into chunked text
|
||||
e.replaceSelection('['+chunk+']('+link+')')
|
||||
cursor = selected.start+1
|
||||
|
||||
// Set the cursor
|
||||
e.setSelection(cursor,cursor+chunk.length)
|
||||
}
|
||||
}
|
||||
},{
|
||||
name: 'cmdImage',
|
||||
title: 'Image',
|
||||
icon: 'icon icon-picture',
|
||||
callback: function(e){
|
||||
// Give ![] surround the selection and prepend the image link
|
||||
var chunk, cursor, selected = e.getSelection(), content = e.getContent(), link
|
||||
|
||||
if (selected.length == 0) {
|
||||
// Give extra word
|
||||
chunk = 'enter image description here'
|
||||
} else {
|
||||
chunk = selected.text
|
||||
}
|
||||
|
||||
link = prompt('Insert Image Hyperlink','http://')
|
||||
|
||||
if (link != null) {
|
||||
// transform selection and set the cursor into chunked text
|
||||
e.replaceSelection('')
|
||||
cursor = selected.start+2
|
||||
|
||||
// Set the next tab
|
||||
e.setNextTab('enter image title here')
|
||||
|
||||
// Set the cursor
|
||||
e.setSelection(cursor,cursor+chunk.length)
|
||||
}
|
||||
}
|
||||
}]
|
||||
},{
|
||||
name: 'groupMisc',
|
||||
data: [{
|
||||
name: 'cmdList',
|
||||
title: 'List',
|
||||
icon: 'icon icon-list',
|
||||
callback: function(e){
|
||||
// Prepend/Give - surround the selection
|
||||
var chunk, cursor, selected = e.getSelection(), content = e.getContent()
|
||||
|
||||
// transform selection and set the cursor into chunked text
|
||||
if (selected.length == 0) {
|
||||
// Give extra word
|
||||
chunk = 'list text here'
|
||||
|
||||
e.replaceSelection('- '+chunk)
|
||||
|
||||
// Set the cursor
|
||||
cursor = selected.start+2
|
||||
} else {
|
||||
if (selected.text.indexOf('\n') < 0) {
|
||||
chunk = selected.text
|
||||
|
||||
e.replaceSelection('- '+chunk)
|
||||
|
||||
// Set the cursor
|
||||
cursor = selected.start+2
|
||||
} else {
|
||||
var list = []
|
||||
|
||||
list = selected.text.split('\n')
|
||||
chunk = list[0]
|
||||
|
||||
$.each(list,function(k,v) {
|
||||
list[k] = '- '+v
|
||||
})
|
||||
|
||||
e.replaceSelection('\n\n'+list.join('\n'))
|
||||
|
||||
// Set the cursor
|
||||
cursor = selected.start+4
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
// Set the cursor
|
||||
e.setSelection(cursor,cursor+chunk.length)
|
||||
}
|
||||
}]
|
||||
},{
|
||||
name: 'groupUtil',
|
||||
data: [{
|
||||
name: 'cmdPreview',
|
||||
toggle: true,
|
||||
title: 'Preview',
|
||||
btnText: 'Preview',
|
||||
btnClass: 'btn btn-inverse',
|
||||
icon: 'icon icon-white icon-search',
|
||||
callback: function(e){
|
||||
// Check the preview mode and toggle based on this flag
|
||||
var isPreview = e.$isPreview,content
|
||||
|
||||
if (isPreview == false) {
|
||||
// Give flag that tell the editor enter preview mode
|
||||
e.showPreview()
|
||||
} else {
|
||||
e.hidePreview()
|
||||
}
|
||||
}
|
||||
}]
|
||||
}]
|
||||
],
|
||||
additionalButtons:[], // Place to hook more buttons by code
|
||||
|
||||
/* Events hook */
|
||||
onShow: function (e) {},
|
||||
onPreview: function (e) {},
|
||||
onSave: function (e) {},
|
||||
onBlur: function (e) {}
|
||||
}
|
||||
|
||||
$.fn.markdown.Constructor = Markdown
|
||||
|
||||
|
||||
/* MARKDOWN NO CONFLICT
|
||||
* ==================== */
|
||||
|
||||
$.fn.markdown.noConflict = function () {
|
||||
$.fn.markdown = old
|
||||
return this
|
||||
}
|
||||
|
||||
/* MARKDOWN GLOBAL FUNCTION & DATA-API
|
||||
* ==================================== */
|
||||
var initMarkdown = function(el) {
|
||||
var $this = el
|
||||
|
||||
if ($this.data('markdown')) {
|
||||
$this.data('markdown').showEditor()
|
||||
return
|
||||
}
|
||||
$this.markdown($this.data())
|
||||
}
|
||||
|
||||
var analyzeMarkdown = function(e) {
|
||||
var blurred = false,
|
||||
el,
|
||||
$docEditor = $(e.currentTarget)
|
||||
|
||||
// Check whether it was editor childs or not
|
||||
if ((e.type == 'focusin' || e.type == 'click') && $docEditor.length == 1 && typeof $docEditor[0] == 'object'){
|
||||
el = $docEditor[0].activeElement
|
||||
if ( ! $(el).data('markdown')) {
|
||||
if (typeof $(el).parent().parent().parent().attr('class') == "undefined"
|
||||
|| $(el).parent().parent().parent().attr('class').indexOf('md-editor') < 0) {
|
||||
if ( typeof $(el).parent().parent().attr('class') == "undefined"
|
||||
|| $(el).parent().parent().attr('class').indexOf('md-editor') < 0) {
|
||||
|
||||
blurred = true
|
||||
}
|
||||
} else {
|
||||
blurred = false
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
if (blurred) {
|
||||
// Blur event
|
||||
$(document).find('.md-editor').each(function(){
|
||||
var parentMd = $(el).parent()
|
||||
|
||||
if ($(this).attr('id') != parentMd.attr('id')) {
|
||||
var attachedMarkdown
|
||||
|
||||
if (attachedMarkdown = $(this).find('textarea').data('markdown'),
|
||||
attachedMarkdown == null) {
|
||||
attachedMarkdown = $(this).find('div[data-provider="markdown-preview"]').data('markdown')
|
||||
}
|
||||
|
||||
if (attachedMarkdown) {
|
||||
attachedMarkdown.blur()
|
||||
}
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
e.stopPropagation()
|
||||
}
|
||||
}
|
||||
|
||||
$(document)
|
||||
.on('click.markdown.data-api', '[data-provide="markdown-editable"]', function (e) {
|
||||
initMarkdown($(this))
|
||||
e.preventDefault()
|
||||
})
|
||||
.on('click', function (e) {
|
||||
analyzeMarkdown(e)
|
||||
})
|
||||
.on('focusin', function (e) {
|
||||
analyzeMarkdown(e)
|
||||
})
|
||||
.ready(function(){
|
||||
$('textarea[data-provide="markdown"]').each(function(){
|
||||
initMarkdown($(this))
|
||||
})
|
||||
})
|
||||
|
||||
}(window.jQuery);
|
||||
@@ -0,0 +1,87 @@
|
||||
$(function(){
|
||||
$('button[type="submit"]').click(function(){
|
||||
var form = $(this).parent(),
|
||||
formResult = [],
|
||||
res = $('<pre/>',{
|
||||
'class':'prettyprint'
|
||||
})
|
||||
|
||||
$.each(form.serializeArray(),function(k,v){
|
||||
formResult.push(v.name+' => '+v.value)
|
||||
})
|
||||
|
||||
res.html('\n'+formResult.join('\n\n')+'\n')
|
||||
form.replaceWith(res)
|
||||
|
||||
return false
|
||||
})
|
||||
|
||||
$('#target-editor-with-custom-buttons').markdown({
|
||||
additionalButtons: [
|
||||
[{
|
||||
name: 'groupCustom',
|
||||
data: [{
|
||||
name: 'cmdBeer',
|
||||
title: 'Beer',
|
||||
icon: 'icon icon-glass',
|
||||
callback: function(e){
|
||||
// Replace selection with some drinks
|
||||
var chunk, cursor, selected = e.getSelection(), content = e.getContent(),
|
||||
drinks = ['Heinekken', 'Budweiser', 'Iron City', 'Amstel Light', 'Red Stripe', 'Smithwicks', 'Westvleteren', 'Sierra Nevada', 'Guinness', 'Corona', 'Calsberg'],
|
||||
index = Math.floor((Math.random()*10)+1)
|
||||
|
||||
|
||||
// Give random drink
|
||||
chunk = drinks[index]
|
||||
|
||||
// transform selection and set the cursor into chunked text
|
||||
e.replaceSelection(chunk)
|
||||
cursor = selected.start
|
||||
|
||||
// Set the cursor
|
||||
e.setSelection(cursor,cursor+chunk.length)
|
||||
}
|
||||
}]
|
||||
}]
|
||||
]
|
||||
})
|
||||
|
||||
$('#editor-triger-init').click(function(){
|
||||
$('#target-editor').markdown({
|
||||
savable:true,
|
||||
onShow: function(e){
|
||||
alert('Showing '
|
||||
+e.$textarea.prop('tagName').toLowerCase()
|
||||
+'#'
|
||||
+e.$textarea.attr('id')
|
||||
+' as Markdown Editor...')
|
||||
},
|
||||
onPreview: function(e) {
|
||||
var previewContent
|
||||
|
||||
if (e.isDirty()) {
|
||||
var originalContent = e.getContent()
|
||||
|
||||
previewContent = 'Prepended text here...'
|
||||
+ "\n"
|
||||
+ originalContent
|
||||
+ "\n"
|
||||
+'Apended text here...'
|
||||
} else {
|
||||
previewContent = 'Default content'
|
||||
}
|
||||
|
||||
return previewContent
|
||||
},
|
||||
onSave: function(e) {
|
||||
alert('Saving "'+e.getContent()+'"...')
|
||||
},
|
||||
onBlur: function(e) {
|
||||
alert('Blur triggered!')
|
||||
}
|
||||
})
|
||||
|
||||
$(this).hide()
|
||||
return false
|
||||
})
|
||||
})
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,184 @@
|
||||
/*
|
||||
* to-markdown - an HTML to Markdown converter
|
||||
*
|
||||
* Copyright 2011, Dom Christie
|
||||
* Licenced under the MIT licence
|
||||
*
|
||||
*/
|
||||
|
||||
var toMarkdown = function(string) {
|
||||
|
||||
var ELEMENTS = [
|
||||
{
|
||||
patterns: 'p',
|
||||
replacement: function(str, attrs, innerHTML) {
|
||||
return innerHTML ? '\n\n' + innerHTML + '\n' : '';
|
||||
}
|
||||
},
|
||||
{
|
||||
patterns: 'br',
|
||||
type: 'void',
|
||||
replacement: '\n'
|
||||
},
|
||||
{
|
||||
patterns: 'h([1-6])',
|
||||
replacement: function(str, hLevel, attrs, innerHTML) {
|
||||
var hPrefix = '';
|
||||
for(var i = 0; i < hLevel; i++) {
|
||||
hPrefix += '#';
|
||||
}
|
||||
return '\n\n' + hPrefix + ' ' + innerHTML + '\n';
|
||||
}
|
||||
},
|
||||
{
|
||||
patterns: 'hr',
|
||||
type: 'void',
|
||||
replacement: '\n\n* * *\n'
|
||||
},
|
||||
{
|
||||
patterns: 'a',
|
||||
replacement: function(str, attrs, innerHTML) {
|
||||
var href = attrs.match(attrRegExp('href')),
|
||||
title = attrs.match(attrRegExp('title'));
|
||||
return href ? '[' + innerHTML + ']' + '(' + href[1] + (title && title[1] ? ' "' + title[1] + '"' : '') + ')' : str;
|
||||
}
|
||||
},
|
||||
{
|
||||
patterns: ['b', 'strong'],
|
||||
replacement: function(str, attrs, innerHTML) {
|
||||
return innerHTML ? '**' + innerHTML + '**' : '';
|
||||
}
|
||||
},
|
||||
{
|
||||
patterns: ['i', 'em'],
|
||||
replacement: function(str, attrs, innerHTML) {
|
||||
return innerHTML ? '_' + innerHTML + '_' : '';
|
||||
}
|
||||
},
|
||||
{
|
||||
patterns: 'code',
|
||||
replacement: function(str, attrs, innerHTML) {
|
||||
return innerHTML ? '`' + innerHTML + '`' : '';
|
||||
}
|
||||
},
|
||||
{
|
||||
patterns: 'img',
|
||||
type: 'void',
|
||||
replacement: function(str, attrs, innerHTML) {
|
||||
var src = attrs.match(attrRegExp('src')),
|
||||
alt = attrs.match(attrRegExp('alt')),
|
||||
title = attrs.match(attrRegExp('title'));
|
||||
return '![' + (alt && alt[1] ? alt[1] : '') + ']' + '(' + src[1] + (title && title[1] ? ' "' + title[1] + '"' : '') + ')';
|
||||
}
|
||||
}
|
||||
];
|
||||
|
||||
for(var i = 0, len = ELEMENTS.length; i < len; i++) {
|
||||
if(typeof ELEMENTS[i].patterns === 'string') {
|
||||
string = replaceEls(string, { tag: ELEMENTS[i].patterns, replacement: ELEMENTS[i].replacement, type: ELEMENTS[i].type });
|
||||
}
|
||||
else {
|
||||
for(var j = 0, pLen = ELEMENTS[i].patterns.length; j < pLen; j++) {
|
||||
string = replaceEls(string, { tag: ELEMENTS[i].patterns[j], replacement: ELEMENTS[i].replacement, type: ELEMENTS[i].type });
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function replaceEls(html, elProperties) {
|
||||
var pattern = elProperties.type === 'void' ? '<' + elProperties.tag + '\\b([^>]*)\\/?>' : '<' + elProperties.tag + '\\b([^>]*)>([\\s\\S]*?)<\\/' + elProperties.tag + '>',
|
||||
regex = new RegExp(pattern, 'gi'),
|
||||
markdown = '';
|
||||
if(typeof elProperties.replacement === 'string') {
|
||||
markdown = html.replace(regex, elProperties.replacement);
|
||||
}
|
||||
else {
|
||||
markdown = html.replace(regex, function(str, p1, p2, p3) {
|
||||
return elProperties.replacement.call(this, str, p1, p2, p3);
|
||||
});
|
||||
}
|
||||
return markdown;
|
||||
}
|
||||
|
||||
function attrRegExp(attr) {
|
||||
return new RegExp(attr + '\\s*=\\s*["\']?([^"\']*)["\']?', 'i');
|
||||
}
|
||||
|
||||
// Pre code blocks
|
||||
|
||||
string = string.replace(/<pre\b[^>]*>`([\s\S]*)`<\/pre>/gi, function(str, innerHTML) {
|
||||
innerHTML = innerHTML.replace(/^\t+/g, ' '); // convert tabs to spaces (you know it makes sense)
|
||||
innerHTML = innerHTML.replace(/\n/g, '\n ');
|
||||
return '\n\n ' + innerHTML + '\n';
|
||||
});
|
||||
|
||||
// Lists
|
||||
|
||||
// Escape numbers that could trigger an ol
|
||||
// If there are more than three spaces before the code, it would be in a pre tag
|
||||
// Make sure we are escaping the period not matching any character
|
||||
string = string.replace(/^(\s{0,3}\d+)\. /g, '$1\\. ');
|
||||
|
||||
// Converts lists that have no child lists (of same type) first, then works it's way up
|
||||
var noChildrenRegex = /<(ul|ol)\b[^>]*>(?:(?!<ul|<ol)[\s\S])*?<\/\1>/gi;
|
||||
while(string.match(noChildrenRegex)) {
|
||||
string = string.replace(noChildrenRegex, function(str) {
|
||||
return replaceLists(str);
|
||||
});
|
||||
}
|
||||
|
||||
function replaceLists(html) {
|
||||
|
||||
html = html.replace(/<(ul|ol)\b[^>]*>([\s\S]*?)<\/\1>/gi, function(str, listType, innerHTML) {
|
||||
var lis = innerHTML.split('</li>');
|
||||
lis.splice(lis.length - 1, 1);
|
||||
|
||||
for(i = 0, len = lis.length; i < len; i++) {
|
||||
if(lis[i]) {
|
||||
var prefix = (listType === 'ol') ? (i + 1) + ". " : "* ";
|
||||
lis[i] = lis[i].replace(/\s*<li[^>]*>([\s\S]*)/i, function(str, innerHTML) {
|
||||
|
||||
innerHTML = innerHTML.replace(/^\s+/, '');
|
||||
innerHTML = innerHTML.replace(/\n\n/g, '\n\n ');
|
||||
// indent nested lists
|
||||
innerHTML = innerHTML.replace(/\n([ ]*)+(\*|\d+\.) /g, '\n$1 $2 ');
|
||||
return prefix + innerHTML;
|
||||
});
|
||||
}
|
||||
}
|
||||
return lis.join('\n');
|
||||
});
|
||||
return '\n\n' + html.replace(/[ \t]+\n|\s+$/g, '');
|
||||
}
|
||||
|
||||
// Blockquotes
|
||||
var deepest = /<blockquote\b[^>]*>((?:(?!<blockquote)[\s\S])*?)<\/blockquote>/gi;
|
||||
while(string.match(deepest)) {
|
||||
string = string.replace(deepest, function(str) {
|
||||
return replaceBlockquotes(str);
|
||||
});
|
||||
}
|
||||
|
||||
function replaceBlockquotes(html) {
|
||||
html = html.replace(/<blockquote\b[^>]*>([\s\S]*?)<\/blockquote>/gi, function(str, inner) {
|
||||
inner = inner.replace(/^\s+|\s+$/g, '');
|
||||
inner = cleanUp(inner);
|
||||
inner = inner.replace(/^/gm, '> ');
|
||||
inner = inner.replace(/^(>([ \t]{2,}>)+)/gm, '> >');
|
||||
return inner;
|
||||
});
|
||||
return html;
|
||||
}
|
||||
|
||||
function cleanUp(string) {
|
||||
string = string.replace(/^[\t\r\n]+|[\t\r\n]+$/g, ''); // trim leading/trailing whitespace
|
||||
string = string.replace(/\n\s+\n/g, '\n\n');
|
||||
string = string.replace(/\n{3,}/g, '\n\n'); // limit consecutive linebreaks to 2
|
||||
return string;
|
||||
}
|
||||
|
||||
return cleanUp(string);
|
||||
};
|
||||
|
||||
if (typeof exports === 'object') {
|
||||
exports.toMarkdown = toMarkdown;
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
.md-editor{display:block;border:1px solid #ddd}.md-editor>.md-header,.md-editor .md-footer{display:block;padding:6px 4px;background:#fff}.md-editor>.md-preview{background:#fff;border-top:1px dashed #ddd;border-bottom:1px dashed #ddd;min-height:10px}.md-editor>textarea{font-family:Monaco,Menlo,Consolas,"Courier New",monospace;font-size:14px;outline:0;outline:thin dotted \9;margin:0;display:block;padding:0;width:100%;border:0;border-top:1px dashed #ddd;border-bottom:1px dashed #ddd;border-radius:0;box-shadow:none;background:#eee}.md-editor>textarea:focus{box-shadow:none;background:#fff}.md-editor.active{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,0.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,0.6)}
|
||||
@@ -0,0 +1,993 @@
|
||||
/* ===================================================
|
||||
* bootstrap-markdown.js v2.0.0
|
||||
* http://github.com/toopay/bootstrap-markdown
|
||||
* ===================================================
|
||||
* Copyright 2013 Taufan Aditya
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
* ========================================================== */
|
||||
|
||||
!function ($) {
|
||||
|
||||
"use strict"; // jshint ;_;
|
||||
|
||||
|
||||
/* MARKDOWN CLASS DEFINITION
|
||||
* ========================== */
|
||||
|
||||
var Markdown = function (element, options) {
|
||||
// Class Properties
|
||||
this.$ns = 'bootstrap-markdown'
|
||||
this.$element = $(element)
|
||||
this.$editable = {el:null, type:null,attrKeys:[], attrValues:[], content:null}
|
||||
this.$options = $.extend(true, {}, $.fn.markdown.defaults, options)
|
||||
this.$oldContent = null
|
||||
this.$isPreview = false
|
||||
this.$editor = null
|
||||
this.$textarea = null
|
||||
this.$handler = []
|
||||
this.$callback = []
|
||||
this.$nextTab = []
|
||||
|
||||
this.showEditor()
|
||||
}
|
||||
|
||||
Markdown.prototype = {
|
||||
|
||||
constructor: Markdown
|
||||
|
||||
, __alterButtons: function(name,alter) {
|
||||
var handler = this.$handler, isAll = (name == 'all'),that = this
|
||||
|
||||
$.each(handler,function(k,v) {
|
||||
var halt = true
|
||||
if (isAll) {
|
||||
halt = false
|
||||
} else {
|
||||
halt = v.indexOf(name) < 0
|
||||
}
|
||||
|
||||
if (halt == false) {
|
||||
alter(that.$editor.find('button[data-handler="'+v+'"]'))
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
, __buildButtons: function(buttonsArray, container) {
|
||||
var i,
|
||||
ns = this.$ns,
|
||||
handler = this.$handler,
|
||||
callback = this.$callback
|
||||
|
||||
for (i=0;i<buttonsArray.length;i++) {
|
||||
// Build each group container
|
||||
var y, btnGroups = buttonsArray[i]
|
||||
for (y=0;y<btnGroups.length;y++) {
|
||||
// Build each button group
|
||||
var z,
|
||||
buttons = btnGroups[y].data,
|
||||
btnGroupContainer = $('<div/>', {
|
||||
'class': 'btn-group'
|
||||
})
|
||||
|
||||
for (z=0;z<buttons.length;z++) {
|
||||
var button = buttons[z],
|
||||
buttonToggle = '',
|
||||
buttonHandler = ns+'-'+button.name,
|
||||
btnText = button.btnText ? button.btnText : '',
|
||||
btnClass = button.btnClass ? button.btnClass : 'btn',
|
||||
tabIndex = button.tabIndex ? button.tabIndex : '-1'
|
||||
|
||||
if (button.toggle == true) {
|
||||
buttonToggle = ' data-toggle="button"'
|
||||
}
|
||||
|
||||
// Attach the button object
|
||||
btnGroupContainer.append('<button class="'
|
||||
+btnClass
|
||||
+' btn-default btn-sm" title="'
|
||||
+button.title
|
||||
+'" tabindex="'
|
||||
+tabIndex
|
||||
+'" data-provider="'
|
||||
+ns
|
||||
+'" data-handler="'
|
||||
+buttonHandler
|
||||
+'"'
|
||||
+buttonToggle
|
||||
+'><span class="'
|
||||
+button.icon
|
||||
+'"></span> '
|
||||
+btnText
|
||||
+'</button>')
|
||||
|
||||
// Register handler and callback
|
||||
handler.push(buttonHandler)
|
||||
callback.push(button.callback)
|
||||
}
|
||||
|
||||
// Attach the button group into container dom
|
||||
container.append(btnGroupContainer)
|
||||
}
|
||||
}
|
||||
|
||||
return container
|
||||
}
|
||||
, __setListener: function() {
|
||||
// Set size and resizable Properties
|
||||
var hasRows = typeof this.$textarea.attr('rows') != 'undefined',
|
||||
maxRows = this.$textarea.val().split("\n").length > 5 ? this.$textarea.val().split("\n").length : '5',
|
||||
rowsVal = hasRows ? this.$textarea.attr('rows') : maxRows
|
||||
|
||||
this.$textarea.attr('rows',rowsVal)
|
||||
this.$textarea.css('resize','none')
|
||||
|
||||
this.$textarea
|
||||
.on('focus', $.proxy(this.focus, this))
|
||||
.on('keypress', $.proxy(this.keypress, this))
|
||||
.on('keyup', $.proxy(this.keyup, this))
|
||||
|
||||
if (this.eventSupported('keydown')) {
|
||||
this.$textarea.on('keydown', $.proxy(this.keydown, this))
|
||||
}
|
||||
|
||||
// Re-attach markdown data
|
||||
this.$textarea.data('markdown',this)
|
||||
}
|
||||
|
||||
, __handle: function(e) {
|
||||
var target = $(e.currentTarget),
|
||||
handler = this.$handler,
|
||||
callback = this.$callback,
|
||||
handlerName = target.attr('data-handler'),
|
||||
callbackIndex = handler.indexOf(handlerName),
|
||||
callbackHandler = callback[callbackIndex]
|
||||
|
||||
// Trigger the focusin
|
||||
$(e.currentTarget).focus()
|
||||
|
||||
callbackHandler(this)
|
||||
|
||||
// Unless it was the save handler,
|
||||
// focusin the textarea
|
||||
if (handlerName.indexOf('cmdSave') < 0) {
|
||||
this.$textarea.focus()
|
||||
}
|
||||
|
||||
e.preventDefault()
|
||||
}
|
||||
|
||||
, showEditor: function() {
|
||||
var instance = this,
|
||||
textarea,
|
||||
ns = this.$ns,
|
||||
container = this.$element,
|
||||
originalHeigth = container.css('height'),
|
||||
originalWidth = container.css('width'),
|
||||
editable = this.$editable,
|
||||
handler = this.$handler,
|
||||
callback = this.$callback,
|
||||
options = this.$options,
|
||||
editor = $( '<div/>', {
|
||||
'class': 'md-editor',
|
||||
click: function() {
|
||||
instance.focus()
|
||||
}
|
||||
})
|
||||
|
||||
// Prepare the editor
|
||||
if (this.$editor == null) {
|
||||
// Create the panel
|
||||
var editorHeader = $('<div/>', {
|
||||
'class': 'md-header btn-toolbar'
|
||||
})
|
||||
|
||||
// Build the main buttons
|
||||
if (options.buttons.length > 0) {
|
||||
editorHeader = this.__buildButtons(options.buttons, editorHeader)
|
||||
}
|
||||
|
||||
// Build the additional buttons
|
||||
if (options.additionalButtons.length > 0) {
|
||||
editorHeader = this.__buildButtons(options.additionalButtons, editorHeader)
|
||||
}
|
||||
|
||||
editor.append(editorHeader)
|
||||
|
||||
// Wrap the textarea
|
||||
if (container.is('textarea')) {
|
||||
container.before(editor)
|
||||
textarea = container
|
||||
textarea.addClass('md-input')
|
||||
editor.append(textarea)
|
||||
} else {
|
||||
var rawContent = (typeof toMarkdown == 'function') ? toMarkdown(container.html()) : container.html(),
|
||||
currentContent = $.trim(rawContent)
|
||||
|
||||
// This is some arbitrary content that could be edited
|
||||
textarea = $('<textarea/>', {
|
||||
'class': 'md-input',
|
||||
'val' : currentContent
|
||||
})
|
||||
|
||||
editor.append(textarea)
|
||||
|
||||
// Save the editable
|
||||
editable.el = container
|
||||
editable.type = container.prop('tagName').toLowerCase()
|
||||
editable.content = container.html()
|
||||
|
||||
$(container[0].attributes).each(function(){
|
||||
editable.attrKeys.push(this.nodeName)
|
||||
editable.attrValues.push(this.nodeValue)
|
||||
})
|
||||
|
||||
// Set editor to blocked the original container
|
||||
container.replaceWith(editor)
|
||||
}
|
||||
|
||||
// Create the footer if savable
|
||||
if (options.savable) {
|
||||
var editorFooter = $('<div/>', {
|
||||
'class': 'md-footer'
|
||||
}),
|
||||
saveHandler = 'cmdSave'
|
||||
|
||||
// Register handler and callback
|
||||
handler.push(saveHandler)
|
||||
callback.push(options.onSave)
|
||||
|
||||
editorFooter.append('<button class="btn btn-success" data-provider="'
|
||||
+ns
|
||||
+'" data-handler="'
|
||||
+saveHandler
|
||||
+'"><i class="icon icon-white icon-ok"></i> Save</button>')
|
||||
|
||||
editor.append(editorFooter)
|
||||
}
|
||||
|
||||
// Set width/height
|
||||
$.each(['height','width'],function(k,attr){
|
||||
if (options[attr] != 'inherit') {
|
||||
if (jQuery.isNumeric(options[attr])) {
|
||||
editor.css(attr,options[attr]+'px')
|
||||
} else {
|
||||
editor.addClass(options[attr])
|
||||
}
|
||||
}
|
||||
})
|
||||
|
||||
// Reference
|
||||
this.$editor = editor
|
||||
this.$textarea = textarea
|
||||
this.$editable = editable
|
||||
this.$oldContent = this.getContent()
|
||||
|
||||
this.__setListener()
|
||||
|
||||
// Set editor attributes, data short-hand API and listener
|
||||
this.$editor.attr('id',(new Date).getTime())
|
||||
this.$editor.on('click', '[data-provider="bootstrap-markdown"]', $.proxy(this.__handle, this))
|
||||
|
||||
} else {
|
||||
this.$editor.show()
|
||||
}
|
||||
|
||||
if (options.autofocus) {
|
||||
this.$textarea.focus()
|
||||
this.$editor.addClass('active')
|
||||
}
|
||||
|
||||
// Trigger the onShow hook
|
||||
options.onShow(this)
|
||||
|
||||
return this
|
||||
}
|
||||
|
||||
, showPreview: function() {
|
||||
var options = this.$options,
|
||||
callbackContent = options.onPreview(this), // Try to get the content from callback
|
||||
container = this.$textarea,
|
||||
afterContainer = container.next(),
|
||||
replacementContainer = $('<div/>',{'class':'md-preview','data-provider':'markdown-preview'}),
|
||||
content
|
||||
|
||||
// Give flag that tell the editor enter preview mode
|
||||
this.$isPreview = true
|
||||
// Disable all buttons
|
||||
this.disableButtons('all').enableButtons('cmdPreview')
|
||||
|
||||
if (typeof callbackContent == 'string') {
|
||||
// Set the content based by callback content
|
||||
content = callbackContent
|
||||
} else {
|
||||
// Set the content
|
||||
content = (typeof markdown == 'object') ? markdown.toHTML(container.val()) : container.val()
|
||||
}
|
||||
|
||||
// Build preview element
|
||||
replacementContainer.html(content)
|
||||
|
||||
if (afterContainer && afterContainer.attr('class') == 'md-footer') {
|
||||
// If there is footer element, insert the preview container before it
|
||||
replacementContainer.insertBefore(afterContainer)
|
||||
} else {
|
||||
// Otherwise, just append it after textarea
|
||||
container.parent().append(replacementContainer)
|
||||
}
|
||||
|
||||
// Hide the last-active textarea
|
||||
container.hide()
|
||||
|
||||
// Attach the editor instances
|
||||
replacementContainer.data('markdown',this)
|
||||
|
||||
return this
|
||||
}
|
||||
|
||||
, hidePreview: function() {
|
||||
// Give flag that tell the editor quit preview mode
|
||||
this.$isPreview = false
|
||||
|
||||
// Obtain the preview container
|
||||
var container = this.$editor.find('div[data-provider="markdown-preview"]')
|
||||
|
||||
// Remove the preview container
|
||||
container.remove()
|
||||
|
||||
// Enable all buttons
|
||||
this.enableButtons('all')
|
||||
|
||||
// Back to the editor
|
||||
this.$textarea.show()
|
||||
this.__setListener()
|
||||
|
||||
return this
|
||||
}
|
||||
|
||||
, isDirty: function() {
|
||||
return this.$oldContent != this.getContent()
|
||||
}
|
||||
|
||||
, getContent: function() {
|
||||
return this.$textarea.val()
|
||||
}
|
||||
|
||||
, setContent: function(content) {
|
||||
this.$textarea.val(content)
|
||||
|
||||
return this
|
||||
}
|
||||
|
||||
, findSelection: function(chunk) {
|
||||
var content = this.getContent(), startChunkPosition
|
||||
|
||||
if (startChunkPosition = content.indexOf(chunk), startChunkPosition >= 0 && chunk.length > 0) {
|
||||
var oldSelection = this.getSelection(), selection
|
||||
|
||||
this.setSelection(startChunkPosition,startChunkPosition+chunk.length)
|
||||
selection = this.getSelection()
|
||||
|
||||
this.setSelection(oldSelection.start,oldSelection.end)
|
||||
|
||||
return selection
|
||||
} else {
|
||||
return null
|
||||
}
|
||||
}
|
||||
|
||||
, getSelection: function() {
|
||||
|
||||
var e = this.$textarea[0]
|
||||
|
||||
return (
|
||||
|
||||
('selectionStart' in e && function() {
|
||||
var l = e.selectionEnd - e.selectionStart
|
||||
return { start: e.selectionStart, end: e.selectionEnd, length: l, text: e.value.substr(e.selectionStart, l) }
|
||||
}) ||
|
||||
|
||||
/* browser not supported */
|
||||
function() {
|
||||
return null
|
||||
}
|
||||
|
||||
)()
|
||||
|
||||
}
|
||||
|
||||
, setSelection: function(start,end) {
|
||||
|
||||
var e = this.$textarea[0]
|
||||
|
||||
return (
|
||||
|
||||
('selectionStart' in e && function() {
|
||||
e.selectionStart = start
|
||||
e.selectionEnd = end
|
||||
return
|
||||
}) ||
|
||||
|
||||
/* browser not supported */
|
||||
function() {
|
||||
return null
|
||||
}
|
||||
|
||||
)()
|
||||
|
||||
}
|
||||
|
||||
, replaceSelection: function(text) {
|
||||
|
||||
var e = this.$textarea[0]
|
||||
|
||||
return (
|
||||
|
||||
('selectionStart' in e && function() {
|
||||
e.value = e.value.substr(0, e.selectionStart) + text + e.value.substr(e.selectionEnd, e.value.length)
|
||||
// Set cursor to the last replacement end
|
||||
e.selectionStart = e.value.length
|
||||
return this
|
||||
}) ||
|
||||
|
||||
/* browser not supported */
|
||||
function() {
|
||||
e.value += text
|
||||
return jQuery(e)
|
||||
}
|
||||
|
||||
)()
|
||||
|
||||
}
|
||||
|
||||
, getNextTab: function() {
|
||||
// Shift the nextTab
|
||||
if (this.$nextTab.length == 0) {
|
||||
return null
|
||||
} else {
|
||||
var nextTab, tab = this.$nextTab.shift()
|
||||
|
||||
if (typeof tab == 'function') {
|
||||
nextTab = tab()
|
||||
} else if (typeof tab == 'object' && tab.length > 0) {
|
||||
nextTab = tab
|
||||
}
|
||||
|
||||
return nextTab
|
||||
}
|
||||
}
|
||||
|
||||
, setNextTab: function(start,end) {
|
||||
// Push new selection into nextTab collections
|
||||
if (typeof start == 'string') {
|
||||
var that = this
|
||||
this.$nextTab.push(function(){
|
||||
return that.findSelection(start)
|
||||
})
|
||||
} else if (typeof start == 'numeric' && typeof end == 'numeric') {
|
||||
var oldSelection = this.getSelection()
|
||||
|
||||
this.setSelection(start,end)
|
||||
this.$nextTab.push(this.getSelection())
|
||||
|
||||
this.setSelection(oldSelection.start,oldSelection.end)
|
||||
}
|
||||
|
||||
return
|
||||
}
|
||||
|
||||
, enableButtons: function(name) {
|
||||
var alter = function (el) {
|
||||
el.removeAttr('disabled')
|
||||
}
|
||||
|
||||
this.__alterButtons(name,alter)
|
||||
|
||||
return this
|
||||
}
|
||||
|
||||
, disableButtons: function(name) {
|
||||
var alter = function (el) {
|
||||
el.attr('disabled','disabled')
|
||||
}
|
||||
|
||||
this.__alterButtons(name,alter)
|
||||
|
||||
return this
|
||||
}
|
||||
|
||||
, eventSupported: function(eventName) {
|
||||
var isSupported = eventName in this.$element
|
||||
if (!isSupported) {
|
||||
this.$element.setAttribute(eventName, 'return;')
|
||||
isSupported = typeof this.$element[eventName] === 'function'
|
||||
}
|
||||
return isSupported
|
||||
}
|
||||
|
||||
, keydown: function (e) {
|
||||
this.suppressKeyPressRepeat = ~$.inArray(e.keyCode, [40,38,9,13,27])
|
||||
this.keyup(e)
|
||||
}
|
||||
|
||||
, keypress: function (e) {
|
||||
if (this.suppressKeyPressRepeat) return
|
||||
this.keyup(e)
|
||||
}
|
||||
|
||||
, keyup: function (e) {
|
||||
var blocked = false
|
||||
switch(e.keyCode) {
|
||||
case 40: // down arrow
|
||||
case 38: // up arrow
|
||||
case 16: // shift
|
||||
case 17: // ctrl
|
||||
case 18: // alt
|
||||
break
|
||||
|
||||
case 9: // tab
|
||||
var nextTab
|
||||
if (nextTab = this.getNextTab(),nextTab != null) {
|
||||
// Get the nextTab if exists
|
||||
var that = this
|
||||
setTimeout(function(){
|
||||
that.setSelection(nextTab.start,nextTab.end)
|
||||
},500)
|
||||
|
||||
blocked = true
|
||||
} else {
|
||||
// The next tab memory contains nothing...
|
||||
// check the cursor position to determine tab action
|
||||
var cursor = this.getSelection()
|
||||
|
||||
if (cursor.start == cursor.end && cursor.end == this.getContent().length) {
|
||||
// The cursor already reach the end of the content
|
||||
blocked = false
|
||||
|
||||
} else {
|
||||
// Put the cursor to the end
|
||||
this.setSelection(this.getContent().length,this.getContent().length)
|
||||
|
||||
blocked = true
|
||||
}
|
||||
}
|
||||
|
||||
break
|
||||
|
||||
case 13: // enter
|
||||
case 27: // escape
|
||||
blocked = false
|
||||
break
|
||||
|
||||
default:
|
||||
blocked = false
|
||||
}
|
||||
|
||||
if (blocked) {
|
||||
e.stopPropagation()
|
||||
e.preventDefault()
|
||||
}
|
||||
}
|
||||
|
||||
, focus: function (e) {
|
||||
var options = this.$options,
|
||||
isHideable = options.hideable,
|
||||
editor = this.$editor
|
||||
|
||||
editor.addClass('active')
|
||||
|
||||
// Blur other markdown(s)
|
||||
$(document).find('.md-editor').each(function(){
|
||||
if ($(this).attr('id') != editor.attr('id')) {
|
||||
var attachedMarkdown
|
||||
|
||||
if (attachedMarkdown = $(this).find('textarea').data('markdown'),
|
||||
attachedMarkdown == null) {
|
||||
attachedMarkdown = $(this).find('div[data-provider="markdown-preview"]').data('markdown')
|
||||
}
|
||||
|
||||
if (attachedMarkdown) {
|
||||
attachedMarkdown.blur()
|
||||
}
|
||||
}
|
||||
})
|
||||
|
||||
return this
|
||||
}
|
||||
|
||||
, blur: function (e) {
|
||||
var options = this.$options,
|
||||
isHideable = options.hideable,
|
||||
editor = this.$editor,
|
||||
editable = this.$editable
|
||||
|
||||
if (editor.hasClass('active') || this.$element.parent().length == 0) {
|
||||
editor.removeClass('active')
|
||||
|
||||
if (isHideable) {
|
||||
|
||||
// Check for editable elements
|
||||
if (editable.el != null) {
|
||||
// Build the original element
|
||||
var oldElement = $('<'+editable.type+'/>'),
|
||||
content = this.getContent(),
|
||||
currentContent = (typeof markdown == 'object') ? markdown.toHTML(content) : content
|
||||
|
||||
$(editable.attrKeys).each(function(k,v) {
|
||||
oldElement.attr(editable.attrKeys[k],editable.attrValues[k])
|
||||
})
|
||||
|
||||
// Get the editor content
|
||||
oldElement.html(currentContent)
|
||||
|
||||
editor.replaceWith(oldElement)
|
||||
} else {
|
||||
editor.hide()
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
// Trigger the onBlur hook
|
||||
options.onBlur(this)
|
||||
}
|
||||
|
||||
return this
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
/* MARKDOWN PLUGIN DEFINITION
|
||||
* ========================== */
|
||||
|
||||
var old = $.fn.markdown
|
||||
|
||||
$.fn.markdown = function (option) {
|
||||
return this.each(function () {
|
||||
var $this = $(this)
|
||||
, data = $this.data('markdown')
|
||||
, options = typeof option == 'object' && option
|
||||
if (!data) $this.data('markdown', (data = new Markdown(this, options)))
|
||||
})
|
||||
}
|
||||
|
||||
$.fn.markdown.defaults = {
|
||||
/* Editor Properties */
|
||||
autofocus: false,
|
||||
hideable: false,
|
||||
savable:false,
|
||||
width: 'inherit',
|
||||
height: 'inherit',
|
||||
|
||||
/* Buttons Properties */
|
||||
buttons: [
|
||||
[{
|
||||
name: 'groupFont',
|
||||
data: [{
|
||||
name: 'cmdBold',
|
||||
title: 'Bold',
|
||||
icon: 'glyphicon glyphicon-bold',
|
||||
callback: function(e){
|
||||
// Give/remove ** surround the selection
|
||||
var chunk, cursor, selected = e.getSelection(), content = e.getContent()
|
||||
|
||||
if (selected.length == 0) {
|
||||
// Give extra word
|
||||
chunk = 'strong text'
|
||||
} else {
|
||||
chunk = selected.text
|
||||
}
|
||||
|
||||
// transform selection and set the cursor into chunked text
|
||||
if (content.substr(selected.start-2,2) == '**'
|
||||
&& content.substr(selected.end,2) == '**' ) {
|
||||
e.setSelection(selected.start-2,selected.end+2)
|
||||
e.replaceSelection(chunk)
|
||||
cursor = selected.start-2
|
||||
} else {
|
||||
e.replaceSelection('**'+chunk+'**')
|
||||
cursor = selected.start+2
|
||||
}
|
||||
|
||||
// Set the cursor
|
||||
e.setSelection(cursor,cursor+chunk.length)
|
||||
}
|
||||
},{
|
||||
name: 'cmdItalic',
|
||||
title: 'Italic',
|
||||
icon: 'glyphicon glyphicon-italic',
|
||||
callback: function(e){
|
||||
// Give/remove * surround the selection
|
||||
var chunk, cursor, selected = e.getSelection(), content = e.getContent()
|
||||
|
||||
if (selected.length == 0) {
|
||||
// Give extra word
|
||||
chunk = 'emphasized text'
|
||||
} else {
|
||||
chunk = selected.text
|
||||
}
|
||||
|
||||
// transform selection and set the cursor into chunked text
|
||||
if (content.substr(selected.start-1,1) == '*'
|
||||
&& content.substr(selected.end,1) == '*' ) {
|
||||
e.setSelection(selected.start-1,selected.end+1)
|
||||
e.replaceSelection(chunk)
|
||||
cursor = selected.start-1
|
||||
} else {
|
||||
e.replaceSelection('*'+chunk+'*')
|
||||
cursor = selected.start+1
|
||||
}
|
||||
|
||||
// Set the cursor
|
||||
e.setSelection(cursor,cursor+chunk.length)
|
||||
}
|
||||
},{
|
||||
name: 'cmdHeading',
|
||||
title: 'Heading',
|
||||
icon: 'glyphicon glyphicon-font',
|
||||
callback: function(e){
|
||||
// Append/remove ### surround the selection
|
||||
var chunk, cursor, selected = e.getSelection(), content = e.getContent(), pointer, prevChar
|
||||
|
||||
if (selected.length == 0) {
|
||||
// Give extra word
|
||||
chunk = 'heading text'
|
||||
} else {
|
||||
chunk = selected.text
|
||||
}
|
||||
|
||||
// transform selection and set the cursor into chunked text
|
||||
if ((pointer = 4, content.substr(selected.start-pointer,pointer) == '### ')
|
||||
|| (pointer = 3, content.substr(selected.start-pointer,pointer) == '###')) {
|
||||
e.setSelection(selected.start-pointer,selected.end)
|
||||
e.replaceSelection(chunk)
|
||||
cursor = selected.start-pointer
|
||||
} else if (prevChar = content.substr(selected.start-1,1), !!prevChar && prevChar != '\n') {
|
||||
e.replaceSelection('\n\n### '+chunk+'\n')
|
||||
cursor = selected.start+6
|
||||
} else {
|
||||
// Empty string before element
|
||||
e.replaceSelection('### '+chunk+'\n')
|
||||
cursor = selected.start+4
|
||||
}
|
||||
|
||||
// Set the cursor
|
||||
e.setSelection(cursor,cursor+chunk.length)
|
||||
}
|
||||
}]
|
||||
},{
|
||||
name: 'groupLink',
|
||||
data: [{
|
||||
name: 'cmdUrl',
|
||||
title: 'URL/Link',
|
||||
icon: 'glyphicon glyphicon-globe',
|
||||
callback: function(e){
|
||||
// Give [] surround the selection and prepend the link
|
||||
var chunk, cursor, selected = e.getSelection(), content = e.getContent(), link
|
||||
|
||||
if (selected.length == 0) {
|
||||
// Give extra word
|
||||
chunk = 'enter link description here'
|
||||
} else {
|
||||
chunk = selected.text
|
||||
}
|
||||
|
||||
link = prompt('Insert Hyperlink','http://')
|
||||
|
||||
if (link != null) {
|
||||
// transform selection and set the cursor into chunked text
|
||||
e.replaceSelection('['+chunk+']('+link+')')
|
||||
cursor = selected.start+1
|
||||
|
||||
// Set the cursor
|
||||
e.setSelection(cursor,cursor+chunk.length)
|
||||
}
|
||||
}
|
||||
},{
|
||||
name: 'cmdImage',
|
||||
title: 'Image',
|
||||
icon: 'glyphicon glyphicon-picture',
|
||||
callback: function(e){
|
||||
// Give ![] surround the selection and prepend the image link
|
||||
var chunk, cursor, selected = e.getSelection(), content = e.getContent(), link
|
||||
|
||||
if (selected.length == 0) {
|
||||
// Give extra word
|
||||
chunk = 'enter image description here'
|
||||
} else {
|
||||
chunk = selected.text
|
||||
}
|
||||
|
||||
link = prompt('Insert Image Hyperlink','http://')
|
||||
|
||||
if (link != null) {
|
||||
// transform selection and set the cursor into chunked text
|
||||
e.replaceSelection('')
|
||||
cursor = selected.start+2
|
||||
|
||||
// Set the next tab
|
||||
e.setNextTab('enter image title here')
|
||||
|
||||
// Set the cursor
|
||||
e.setSelection(cursor,cursor+chunk.length)
|
||||
}
|
||||
}
|
||||
}]
|
||||
},{
|
||||
name: 'groupMisc',
|
||||
data: [{
|
||||
name: 'cmdList',
|
||||
title: 'List',
|
||||
icon: 'glyphicon glyphicon-list',
|
||||
callback: function(e){
|
||||
// Prepend/Give - surround the selection
|
||||
var chunk, cursor, selected = e.getSelection(), content = e.getContent()
|
||||
|
||||
// transform selection and set the cursor into chunked text
|
||||
if (selected.length == 0) {
|
||||
// Give extra word
|
||||
chunk = 'list text here'
|
||||
|
||||
e.replaceSelection('- '+chunk)
|
||||
|
||||
// Set the cursor
|
||||
cursor = selected.start+2
|
||||
} else {
|
||||
if (selected.text.indexOf('\n') < 0) {
|
||||
chunk = selected.text
|
||||
|
||||
e.replaceSelection('- '+chunk)
|
||||
|
||||
// Set the cursor
|
||||
cursor = selected.start+2
|
||||
} else {
|
||||
var list = []
|
||||
|
||||
list = selected.text.split('\n')
|
||||
chunk = list[0]
|
||||
|
||||
$.each(list,function(k,v) {
|
||||
list[k] = '- '+v
|
||||
})
|
||||
|
||||
e.replaceSelection('\n\n'+list.join('\n'))
|
||||
|
||||
// Set the cursor
|
||||
cursor = selected.start+4
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
// Set the cursor
|
||||
e.setSelection(cursor,cursor+chunk.length)
|
||||
}
|
||||
}]
|
||||
},{
|
||||
name: 'groupUtil',
|
||||
data: [{
|
||||
name: 'cmdPreview',
|
||||
toggle: true,
|
||||
title: 'Preview',
|
||||
btnText: 'Preview',
|
||||
btnClass: 'btn btn-primary btn-sm',
|
||||
icon: 'glyphicon glyphicon-search',
|
||||
callback: function(e){
|
||||
// Check the preview mode and toggle based on this flag
|
||||
var isPreview = e.$isPreview,content
|
||||
|
||||
if (isPreview == false) {
|
||||
// Give flag that tell the editor enter preview mode
|
||||
e.showPreview()
|
||||
} else {
|
||||
e.hidePreview()
|
||||
}
|
||||
}
|
||||
}]
|
||||
}]
|
||||
],
|
||||
additionalButtons:[], // Place to hook more buttons by code
|
||||
|
||||
/* Events hook */
|
||||
onShow: function (e) {},
|
||||
onPreview: function (e) {},
|
||||
onSave: function (e) {},
|
||||
onBlur: function (e) {}
|
||||
}
|
||||
|
||||
$.fn.markdown.Constructor = Markdown
|
||||
|
||||
|
||||
/* MARKDOWN NO CONFLICT
|
||||
* ==================== */
|
||||
|
||||
$.fn.markdown.noConflict = function () {
|
||||
$.fn.markdown = old
|
||||
return this
|
||||
}
|
||||
|
||||
/* MARKDOWN GLOBAL FUNCTION & DATA-API
|
||||
* ==================================== */
|
||||
var initMarkdown = function(el) {
|
||||
var $this = el
|
||||
|
||||
if ($this.data('markdown')) {
|
||||
$this.data('markdown').showEditor()
|
||||
return
|
||||
}
|
||||
$this.markdown($this.data())
|
||||
}
|
||||
|
||||
var analyzeMarkdown = function(e) {
|
||||
var blurred = false,
|
||||
el,
|
||||
$docEditor = $(e.currentTarget)
|
||||
|
||||
// Check whether it was editor childs or not
|
||||
if ((e.type == 'focusin' || e.type == 'click') && $docEditor.length == 1 && typeof $docEditor[0] == 'object'){
|
||||
el = $docEditor[0].activeElement
|
||||
if ( ! $(el).data('markdown')) {
|
||||
if (typeof $(el).parent().parent().parent().attr('class') == "undefined"
|
||||
|| $(el).parent().parent().parent().attr('class').indexOf('md-editor') < 0) {
|
||||
if ( typeof $(el).parent().parent().attr('class') == "undefined"
|
||||
|| $(el).parent().parent().attr('class').indexOf('md-editor') < 0) {
|
||||
|
||||
blurred = true
|
||||
}
|
||||
} else {
|
||||
blurred = false
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
if (blurred) {
|
||||
// Blur event
|
||||
$(document).find('.md-editor').each(function(){
|
||||
var parentMd = $(el).parent()
|
||||
|
||||
if ($(this).attr('id') != parentMd.attr('id')) {
|
||||
var attachedMarkdown
|
||||
|
||||
if (attachedMarkdown = $(this).find('textarea').data('markdown'),
|
||||
attachedMarkdown == null) {
|
||||
attachedMarkdown = $(this).find('div[data-provider="markdown-preview"]').data('markdown')
|
||||
}
|
||||
|
||||
if (attachedMarkdown) {
|
||||
attachedMarkdown.blur()
|
||||
}
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
e.stopPropagation()
|
||||
}
|
||||
}
|
||||
|
||||
$(document)
|
||||
.on('click.markdown.data-api', '[data-provide="markdown-editable"]', function (e) {
|
||||
initMarkdown($(this))
|
||||
e.preventDefault()
|
||||
})
|
||||
.on('click', function (e) {
|
||||
analyzeMarkdown(e)
|
||||
})
|
||||
.on('focusin', function (e) {
|
||||
analyzeMarkdown(e)
|
||||
})
|
||||
.ready(function(){
|
||||
$('textarea[data-provide="markdown"]').each(function(){
|
||||
initMarkdown($(this))
|
||||
})
|
||||
})
|
||||
|
||||
}(window.jQuery);
|
||||
@@ -0,0 +1 @@
|
||||
.md-editor{display:block;border:1px solid #ddd}.md-editor>.md-header,.md-editor .md-footer{display:block;padding:6px 4px;background:#fff}.md-editor>.md-preview{background:#fff;border-top:1px dashed #ddd;border-bottom:1px dashed #ddd;min-height:10px}.md-editor>textarea{font-family:Monaco,Menlo,Consolas,"Courier New",monospace;font-size:14px;outline:0;outline:thin dotted \9;margin:0;display:block;padding:0;width:100%;border:0;border-top:1px dashed #ddd;border-bottom:1px dashed #ddd;border-radius:0;box-shadow:none;background:#eee}.md-editor>textarea:focus{box-shadow:none;background:#fff}.md-editor.active{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,0.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,0.6)}
|
||||
@@ -0,0 +1,993 @@
|
||||
/* ===================================================
|
||||
* bootstrap-markdown.js v2.1.0
|
||||
* http://github.com/toopay/bootstrap-markdown
|
||||
* ===================================================
|
||||
* Copyright 2013 Taufan Aditya
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
* ========================================================== */
|
||||
|
||||
!function ($) {
|
||||
|
||||
"use strict"; // jshint ;_;
|
||||
|
||||
|
||||
/* MARKDOWN CLASS DEFINITION
|
||||
* ========================== */
|
||||
|
||||
var Markdown = function (element, options) {
|
||||
// Class Properties
|
||||
this.$ns = 'bootstrap-markdown'
|
||||
this.$element = $(element)
|
||||
this.$editable = {el:null, type:null,attrKeys:[], attrValues:[], content:null}
|
||||
this.$options = $.extend(true, {}, $.fn.markdown.defaults, options)
|
||||
this.$oldContent = null
|
||||
this.$isPreview = false
|
||||
this.$editor = null
|
||||
this.$textarea = null
|
||||
this.$handler = []
|
||||
this.$callback = []
|
||||
this.$nextTab = []
|
||||
|
||||
this.showEditor()
|
||||
}
|
||||
|
||||
Markdown.prototype = {
|
||||
|
||||
constructor: Markdown
|
||||
|
||||
, __alterButtons: function(name,alter) {
|
||||
var handler = this.$handler, isAll = (name == 'all'),that = this
|
||||
|
||||
$.each(handler,function(k,v) {
|
||||
var halt = true
|
||||
if (isAll) {
|
||||
halt = false
|
||||
} else {
|
||||
halt = v.indexOf(name) < 0
|
||||
}
|
||||
|
||||
if (halt == false) {
|
||||
alter(that.$editor.find('button[data-handler="'+v+'"]'))
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
, __buildButtons: function(buttonsArray, container) {
|
||||
var i,
|
||||
ns = this.$ns,
|
||||
handler = this.$handler,
|
||||
callback = this.$callback
|
||||
|
||||
for (i=0;i<buttonsArray.length;i++) {
|
||||
// Build each group container
|
||||
var y, btnGroups = buttonsArray[i]
|
||||
for (y=0;y<btnGroups.length;y++) {
|
||||
// Build each button group
|
||||
var z,
|
||||
buttons = btnGroups[y].data,
|
||||
btnGroupContainer = $('<div/>', {
|
||||
'class': 'btn-group'
|
||||
})
|
||||
|
||||
for (z=0;z<buttons.length;z++) {
|
||||
var button = buttons[z],
|
||||
buttonToggle = '',
|
||||
buttonHandler = ns+'-'+button.name,
|
||||
btnText = button.btnText ? button.btnText : '',
|
||||
btnClass = button.btnClass ? button.btnClass : 'btn',
|
||||
tabIndex = button.tabIndex ? button.tabIndex : '-1'
|
||||
|
||||
if (button.toggle == true) {
|
||||
buttonToggle = ' data-toggle="button"'
|
||||
}
|
||||
|
||||
// Attach the button object
|
||||
btnGroupContainer.append('<button class="'
|
||||
+btnClass
|
||||
+' btn-default btn-sm" title="'
|
||||
+button.title
|
||||
+'" tabindex="'
|
||||
+tabIndex
|
||||
+'" data-provider="'
|
||||
+ns
|
||||
+'" data-handler="'
|
||||
+buttonHandler
|
||||
+'"'
|
||||
+buttonToggle
|
||||
+'><span class="'
|
||||
+button.icon
|
||||
+'"></span> '
|
||||
+btnText
|
||||
+'</button>')
|
||||
|
||||
// Register handler and callback
|
||||
handler.push(buttonHandler)
|
||||
callback.push(button.callback)
|
||||
}
|
||||
|
||||
// Attach the button group into container dom
|
||||
container.append(btnGroupContainer)
|
||||
}
|
||||
}
|
||||
|
||||
return container
|
||||
}
|
||||
, __setListener: function() {
|
||||
// Set size and resizable Properties
|
||||
var hasRows = typeof this.$textarea.attr('rows') != 'undefined',
|
||||
maxRows = this.$textarea.val().split("\n").length > 5 ? this.$textarea.val().split("\n").length : '5',
|
||||
rowsVal = hasRows ? this.$textarea.attr('rows') : maxRows
|
||||
|
||||
this.$textarea.attr('rows',rowsVal)
|
||||
this.$textarea.css('resize','none')
|
||||
|
||||
this.$textarea
|
||||
.on('focus', $.proxy(this.focus, this))
|
||||
.on('keypress', $.proxy(this.keypress, this))
|
||||
.on('keyup', $.proxy(this.keyup, this))
|
||||
|
||||
if (this.eventSupported('keydown')) {
|
||||
this.$textarea.on('keydown', $.proxy(this.keydown, this))
|
||||
}
|
||||
|
||||
// Re-attach markdown data
|
||||
this.$textarea.data('markdown',this)
|
||||
}
|
||||
|
||||
, __handle: function(e) {
|
||||
var target = $(e.currentTarget),
|
||||
handler = this.$handler,
|
||||
callback = this.$callback,
|
||||
handlerName = target.attr('data-handler'),
|
||||
callbackIndex = handler.indexOf(handlerName),
|
||||
callbackHandler = callback[callbackIndex]
|
||||
|
||||
// Trigger the focusin
|
||||
$(e.currentTarget).focus()
|
||||
|
||||
callbackHandler(this)
|
||||
|
||||
// Unless it was the save handler,
|
||||
// focusin the textarea
|
||||
if (handlerName.indexOf('cmdSave') < 0) {
|
||||
this.$textarea.focus()
|
||||
}
|
||||
|
||||
e.preventDefault()
|
||||
}
|
||||
|
||||
, showEditor: function() {
|
||||
var instance = this,
|
||||
textarea,
|
||||
ns = this.$ns,
|
||||
container = this.$element,
|
||||
originalHeigth = container.css('height'),
|
||||
originalWidth = container.css('width'),
|
||||
editable = this.$editable,
|
||||
handler = this.$handler,
|
||||
callback = this.$callback,
|
||||
options = this.$options,
|
||||
editor = $( '<div/>', {
|
||||
'class': 'md-editor',
|
||||
click: function() {
|
||||
instance.focus()
|
||||
}
|
||||
})
|
||||
|
||||
// Prepare the editor
|
||||
if (this.$editor == null) {
|
||||
// Create the panel
|
||||
var editorHeader = $('<div/>', {
|
||||
'class': 'md-header btn-toolbar'
|
||||
})
|
||||
|
||||
// Build the main buttons
|
||||
if (options.buttons.length > 0) {
|
||||
editorHeader = this.__buildButtons(options.buttons, editorHeader)
|
||||
}
|
||||
|
||||
// Build the additional buttons
|
||||
if (options.additionalButtons.length > 0) {
|
||||
editorHeader = this.__buildButtons(options.additionalButtons, editorHeader)
|
||||
}
|
||||
|
||||
editor.append(editorHeader)
|
||||
|
||||
// Wrap the textarea
|
||||
if (container.is('textarea')) {
|
||||
container.before(editor)
|
||||
textarea = container
|
||||
textarea.addClass('md-input')
|
||||
editor.append(textarea)
|
||||
} else {
|
||||
var rawContent = (typeof toMarkdown == 'function') ? toMarkdown(container.html()) : container.html(),
|
||||
currentContent = $.trim(rawContent)
|
||||
|
||||
// This is some arbitrary content that could be edited
|
||||
textarea = $('<textarea/>', {
|
||||
'class': 'md-input',
|
||||
'val' : currentContent
|
||||
})
|
||||
|
||||
editor.append(textarea)
|
||||
|
||||
// Save the editable
|
||||
editable.el = container
|
||||
editable.type = container.prop('tagName').toLowerCase()
|
||||
editable.content = container.html()
|
||||
|
||||
$(container[0].attributes).each(function(){
|
||||
editable.attrKeys.push(this.nodeName)
|
||||
editable.attrValues.push(this.nodeValue)
|
||||
})
|
||||
|
||||
// Set editor to blocked the original container
|
||||
container.replaceWith(editor)
|
||||
}
|
||||
|
||||
// Create the footer if savable
|
||||
if (options.savable) {
|
||||
var editorFooter = $('<div/>', {
|
||||
'class': 'md-footer'
|
||||
}),
|
||||
saveHandler = 'cmdSave'
|
||||
|
||||
// Register handler and callback
|
||||
handler.push(saveHandler)
|
||||
callback.push(options.onSave)
|
||||
|
||||
editorFooter.append('<button class="btn btn-success" data-provider="'
|
||||
+ns
|
||||
+'" data-handler="'
|
||||
+saveHandler
|
||||
+'"><i class="icon icon-white icon-ok"></i> Save</button>')
|
||||
|
||||
editor.append(editorFooter)
|
||||
}
|
||||
|
||||
// Set width/height
|
||||
$.each(['height','width'],function(k,attr){
|
||||
if (options[attr] != 'inherit') {
|
||||
if (jQuery.isNumeric(options[attr])) {
|
||||
editor.css(attr,options[attr]+'px')
|
||||
} else {
|
||||
editor.addClass(options[attr])
|
||||
}
|
||||
}
|
||||
})
|
||||
|
||||
// Reference
|
||||
this.$editor = editor
|
||||
this.$textarea = textarea
|
||||
this.$editable = editable
|
||||
this.$oldContent = this.getContent()
|
||||
|
||||
this.__setListener()
|
||||
|
||||
// Set editor attributes, data short-hand API and listener
|
||||
this.$editor.attr('id',(new Date).getTime())
|
||||
this.$editor.on('click', '[data-provider="bootstrap-markdown"]', $.proxy(this.__handle, this))
|
||||
|
||||
} else {
|
||||
this.$editor.show()
|
||||
}
|
||||
|
||||
if (options.autofocus) {
|
||||
this.$textarea.focus()
|
||||
this.$editor.addClass('active')
|
||||
}
|
||||
|
||||
// Trigger the onShow hook
|
||||
options.onShow(this)
|
||||
|
||||
return this
|
||||
}
|
||||
|
||||
, showPreview: function() {
|
||||
var options = this.$options,
|
||||
callbackContent = options.onPreview(this), // Try to get the content from callback
|
||||
container = this.$textarea,
|
||||
afterContainer = container.next(),
|
||||
replacementContainer = $('<div/>',{'class':'md-preview','data-provider':'markdown-preview'}),
|
||||
content
|
||||
|
||||
// Give flag that tell the editor enter preview mode
|
||||
this.$isPreview = true
|
||||
// Disable all buttons
|
||||
this.disableButtons('all').enableButtons('cmdPreview')
|
||||
|
||||
if (typeof callbackContent == 'string') {
|
||||
// Set the content based by callback content
|
||||
content = callbackContent
|
||||
} else {
|
||||
// Set the content
|
||||
content = (typeof markdown == 'object') ? markdown.toHTML(container.val()) : container.val()
|
||||
}
|
||||
|
||||
// Build preview element
|
||||
replacementContainer.html(content)
|
||||
|
||||
if (afterContainer && afterContainer.attr('class') == 'md-footer') {
|
||||
// If there is footer element, insert the preview container before it
|
||||
replacementContainer.insertBefore(afterContainer)
|
||||
} else {
|
||||
// Otherwise, just append it after textarea
|
||||
container.parent().append(replacementContainer)
|
||||
}
|
||||
|
||||
// Hide the last-active textarea
|
||||
container.hide()
|
||||
|
||||
// Attach the editor instances
|
||||
replacementContainer.data('markdown',this)
|
||||
|
||||
return this
|
||||
}
|
||||
|
||||
, hidePreview: function() {
|
||||
// Give flag that tell the editor quit preview mode
|
||||
this.$isPreview = false
|
||||
|
||||
// Obtain the preview container
|
||||
var container = this.$editor.find('div[data-provider="markdown-preview"]')
|
||||
|
||||
// Remove the preview container
|
||||
container.remove()
|
||||
|
||||
// Enable all buttons
|
||||
this.enableButtons('all')
|
||||
|
||||
// Back to the editor
|
||||
this.$textarea.show()
|
||||
this.__setListener()
|
||||
|
||||
return this
|
||||
}
|
||||
|
||||
, isDirty: function() {
|
||||
return this.$oldContent != this.getContent()
|
||||
}
|
||||
|
||||
, getContent: function() {
|
||||
return this.$textarea.val()
|
||||
}
|
||||
|
||||
, setContent: function(content) {
|
||||
this.$textarea.val(content)
|
||||
|
||||
return this
|
||||
}
|
||||
|
||||
, findSelection: function(chunk) {
|
||||
var content = this.getContent(), startChunkPosition
|
||||
|
||||
if (startChunkPosition = content.indexOf(chunk), startChunkPosition >= 0 && chunk.length > 0) {
|
||||
var oldSelection = this.getSelection(), selection
|
||||
|
||||
this.setSelection(startChunkPosition,startChunkPosition+chunk.length)
|
||||
selection = this.getSelection()
|
||||
|
||||
this.setSelection(oldSelection.start,oldSelection.end)
|
||||
|
||||
return selection
|
||||
} else {
|
||||
return null
|
||||
}
|
||||
}
|
||||
|
||||
, getSelection: function() {
|
||||
|
||||
var e = this.$textarea[0]
|
||||
|
||||
return (
|
||||
|
||||
('selectionStart' in e && function() {
|
||||
var l = e.selectionEnd - e.selectionStart
|
||||
return { start: e.selectionStart, end: e.selectionEnd, length: l, text: e.value.substr(e.selectionStart, l) }
|
||||
}) ||
|
||||
|
||||
/* browser not supported */
|
||||
function() {
|
||||
return null
|
||||
}
|
||||
|
||||
)()
|
||||
|
||||
}
|
||||
|
||||
, setSelection: function(start,end) {
|
||||
|
||||
var e = this.$textarea[0]
|
||||
|
||||
return (
|
||||
|
||||
('selectionStart' in e && function() {
|
||||
e.selectionStart = start
|
||||
e.selectionEnd = end
|
||||
return
|
||||
}) ||
|
||||
|
||||
/* browser not supported */
|
||||
function() {
|
||||
return null
|
||||
}
|
||||
|
||||
)()
|
||||
|
||||
}
|
||||
|
||||
, replaceSelection: function(text) {
|
||||
|
||||
var e = this.$textarea[0]
|
||||
|
||||
return (
|
||||
|
||||
('selectionStart' in e && function() {
|
||||
e.value = e.value.substr(0, e.selectionStart) + text + e.value.substr(e.selectionEnd, e.value.length)
|
||||
// Set cursor to the last replacement end
|
||||
e.selectionStart = e.value.length
|
||||
return this
|
||||
}) ||
|
||||
|
||||
/* browser not supported */
|
||||
function() {
|
||||
e.value += text
|
||||
return jQuery(e)
|
||||
}
|
||||
|
||||
)()
|
||||
|
||||
}
|
||||
|
||||
, getNextTab: function() {
|
||||
// Shift the nextTab
|
||||
if (this.$nextTab.length == 0) {
|
||||
return null
|
||||
} else {
|
||||
var nextTab, tab = this.$nextTab.shift()
|
||||
|
||||
if (typeof tab == 'function') {
|
||||
nextTab = tab()
|
||||
} else if (typeof tab == 'object' && tab.length > 0) {
|
||||
nextTab = tab
|
||||
}
|
||||
|
||||
return nextTab
|
||||
}
|
||||
}
|
||||
|
||||
, setNextTab: function(start,end) {
|
||||
// Push new selection into nextTab collections
|
||||
if (typeof start == 'string') {
|
||||
var that = this
|
||||
this.$nextTab.push(function(){
|
||||
return that.findSelection(start)
|
||||
})
|
||||
} else if (typeof start == 'numeric' && typeof end == 'numeric') {
|
||||
var oldSelection = this.getSelection()
|
||||
|
||||
this.setSelection(start,end)
|
||||
this.$nextTab.push(this.getSelection())
|
||||
|
||||
this.setSelection(oldSelection.start,oldSelection.end)
|
||||
}
|
||||
|
||||
return
|
||||
}
|
||||
|
||||
, enableButtons: function(name) {
|
||||
var alter = function (el) {
|
||||
el.removeAttr('disabled')
|
||||
}
|
||||
|
||||
this.__alterButtons(name,alter)
|
||||
|
||||
return this
|
||||
}
|
||||
|
||||
, disableButtons: function(name) {
|
||||
var alter = function (el) {
|
||||
el.attr('disabled','disabled')
|
||||
}
|
||||
|
||||
this.__alterButtons(name,alter)
|
||||
|
||||
return this
|
||||
}
|
||||
|
||||
, eventSupported: function(eventName) {
|
||||
var isSupported = eventName in this.$element
|
||||
if (!isSupported) {
|
||||
this.$element.setAttribute(eventName, 'return;')
|
||||
isSupported = typeof this.$element[eventName] === 'function'
|
||||
}
|
||||
return isSupported
|
||||
}
|
||||
|
||||
, keydown: function (e) {
|
||||
this.suppressKeyPressRepeat = ~$.inArray(e.keyCode, [40,38,9,13,27])
|
||||
this.keyup(e)
|
||||
}
|
||||
|
||||
, keypress: function (e) {
|
||||
if (this.suppressKeyPressRepeat) return
|
||||
this.keyup(e)
|
||||
}
|
||||
|
||||
, keyup: function (e) {
|
||||
var blocked = false
|
||||
switch(e.keyCode) {
|
||||
case 40: // down arrow
|
||||
case 38: // up arrow
|
||||
case 16: // shift
|
||||
case 17: // ctrl
|
||||
case 18: // alt
|
||||
break
|
||||
|
||||
case 9: // tab
|
||||
var nextTab
|
||||
if (nextTab = this.getNextTab(),nextTab != null) {
|
||||
// Get the nextTab if exists
|
||||
var that = this
|
||||
setTimeout(function(){
|
||||
that.setSelection(nextTab.start,nextTab.end)
|
||||
},500)
|
||||
|
||||
blocked = true
|
||||
} else {
|
||||
// The next tab memory contains nothing...
|
||||
// check the cursor position to determine tab action
|
||||
var cursor = this.getSelection()
|
||||
|
||||
if (cursor.start == cursor.end && cursor.end == this.getContent().length) {
|
||||
// The cursor already reach the end of the content
|
||||
blocked = false
|
||||
|
||||
} else {
|
||||
// Put the cursor to the end
|
||||
this.setSelection(this.getContent().length,this.getContent().length)
|
||||
|
||||
blocked = true
|
||||
}
|
||||
}
|
||||
|
||||
break
|
||||
|
||||
case 13: // enter
|
||||
case 27: // escape
|
||||
blocked = false
|
||||
break
|
||||
|
||||
default:
|
||||
blocked = false
|
||||
}
|
||||
|
||||
if (blocked) {
|
||||
e.stopPropagation()
|
||||
e.preventDefault()
|
||||
}
|
||||
}
|
||||
|
||||
, focus: function (e) {
|
||||
var options = this.$options,
|
||||
isHideable = options.hideable,
|
||||
editor = this.$editor
|
||||
|
||||
editor.addClass('active')
|
||||
|
||||
// Blur other markdown(s)
|
||||
$(document).find('.md-editor').each(function(){
|
||||
if ($(this).attr('id') != editor.attr('id')) {
|
||||
var attachedMarkdown
|
||||
|
||||
if (attachedMarkdown = $(this).find('textarea').data('markdown'),
|
||||
attachedMarkdown == null) {
|
||||
attachedMarkdown = $(this).find('div[data-provider="markdown-preview"]').data('markdown')
|
||||
}
|
||||
|
||||
if (attachedMarkdown) {
|
||||
attachedMarkdown.blur()
|
||||
}
|
||||
}
|
||||
})
|
||||
|
||||
return this
|
||||
}
|
||||
|
||||
, blur: function (e) {
|
||||
var options = this.$options,
|
||||
isHideable = options.hideable,
|
||||
editor = this.$editor,
|
||||
editable = this.$editable
|
||||
|
||||
if (editor.hasClass('active') || this.$element.parent().length == 0) {
|
||||
editor.removeClass('active')
|
||||
|
||||
if (isHideable) {
|
||||
|
||||
// Check for editable elements
|
||||
if (editable.el != null) {
|
||||
// Build the original element
|
||||
var oldElement = $('<'+editable.type+'/>'),
|
||||
content = this.getContent(),
|
||||
currentContent = (typeof markdown == 'object') ? markdown.toHTML(content) : content
|
||||
|
||||
$(editable.attrKeys).each(function(k,v) {
|
||||
oldElement.attr(editable.attrKeys[k],editable.attrValues[k])
|
||||
})
|
||||
|
||||
// Get the editor content
|
||||
oldElement.html(currentContent)
|
||||
|
||||
editor.replaceWith(oldElement)
|
||||
} else {
|
||||
editor.hide()
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
// Trigger the onBlur hook
|
||||
options.onBlur(this)
|
||||
}
|
||||
|
||||
return this
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
/* MARKDOWN PLUGIN DEFINITION
|
||||
* ========================== */
|
||||
|
||||
var old = $.fn.markdown
|
||||
|
||||
$.fn.markdown = function (option) {
|
||||
return this.each(function () {
|
||||
var $this = $(this)
|
||||
, data = $this.data('markdown')
|
||||
, options = typeof option == 'object' && option
|
||||
if (!data) $this.data('markdown', (data = new Markdown(this, options)))
|
||||
})
|
||||
}
|
||||
|
||||
$.fn.markdown.defaults = {
|
||||
/* Editor Properties */
|
||||
autofocus: false,
|
||||
hideable: false,
|
||||
savable:false,
|
||||
width: 'inherit',
|
||||
height: 'inherit',
|
||||
|
||||
/* Buttons Properties */
|
||||
buttons: [
|
||||
[{
|
||||
name: 'groupFont',
|
||||
data: [{
|
||||
name: 'cmdBold',
|
||||
title: 'Bold',
|
||||
icon: 'glyphicon glyphicon-bold',
|
||||
callback: function(e){
|
||||
// Give/remove ** surround the selection
|
||||
var chunk, cursor, selected = e.getSelection(), content = e.getContent()
|
||||
|
||||
if (selected.length == 0) {
|
||||
// Give extra word
|
||||
chunk = 'strong text'
|
||||
} else {
|
||||
chunk = selected.text
|
||||
}
|
||||
|
||||
// transform selection and set the cursor into chunked text
|
||||
if (content.substr(selected.start-2,2) == '**'
|
||||
&& content.substr(selected.end,2) == '**' ) {
|
||||
e.setSelection(selected.start-2,selected.end+2)
|
||||
e.replaceSelection(chunk)
|
||||
cursor = selected.start-2
|
||||
} else {
|
||||
e.replaceSelection('**'+chunk+'**')
|
||||
cursor = selected.start+2
|
||||
}
|
||||
|
||||
// Set the cursor
|
||||
e.setSelection(cursor,cursor+chunk.length)
|
||||
}
|
||||
},{
|
||||
name: 'cmdItalic',
|
||||
title: 'Italic',
|
||||
icon: 'glyphicon glyphicon-italic',
|
||||
callback: function(e){
|
||||
// Give/remove * surround the selection
|
||||
var chunk, cursor, selected = e.getSelection(), content = e.getContent()
|
||||
|
||||
if (selected.length == 0) {
|
||||
// Give extra word
|
||||
chunk = 'emphasized text'
|
||||
} else {
|
||||
chunk = selected.text
|
||||
}
|
||||
|
||||
// transform selection and set the cursor into chunked text
|
||||
if (content.substr(selected.start-1,1) == '*'
|
||||
&& content.substr(selected.end,1) == '*' ) {
|
||||
e.setSelection(selected.start-1,selected.end+1)
|
||||
e.replaceSelection(chunk)
|
||||
cursor = selected.start-1
|
||||
} else {
|
||||
e.replaceSelection('*'+chunk+'*')
|
||||
cursor = selected.start+1
|
||||
}
|
||||
|
||||
// Set the cursor
|
||||
e.setSelection(cursor,cursor+chunk.length)
|
||||
}
|
||||
},{
|
||||
name: 'cmdHeading',
|
||||
title: 'Heading',
|
||||
icon: 'glyphicon glyphicon-font',
|
||||
callback: function(e){
|
||||
// Append/remove ### surround the selection
|
||||
var chunk, cursor, selected = e.getSelection(), content = e.getContent(), pointer, prevChar
|
||||
|
||||
if (selected.length == 0) {
|
||||
// Give extra word
|
||||
chunk = 'heading text'
|
||||
} else {
|
||||
chunk = selected.text
|
||||
}
|
||||
|
||||
// transform selection and set the cursor into chunked text
|
||||
if ((pointer = 4, content.substr(selected.start-pointer,pointer) == '### ')
|
||||
|| (pointer = 3, content.substr(selected.start-pointer,pointer) == '###')) {
|
||||
e.setSelection(selected.start-pointer,selected.end)
|
||||
e.replaceSelection(chunk)
|
||||
cursor = selected.start-pointer
|
||||
} else if (prevChar = content.substr(selected.start-1,1), !!prevChar && prevChar != '\n') {
|
||||
e.replaceSelection('\n\n### '+chunk+'\n')
|
||||
cursor = selected.start+6
|
||||
} else {
|
||||
// Empty string before element
|
||||
e.replaceSelection('### '+chunk+'\n')
|
||||
cursor = selected.start+4
|
||||
}
|
||||
|
||||
// Set the cursor
|
||||
e.setSelection(cursor,cursor+chunk.length)
|
||||
}
|
||||
}]
|
||||
},{
|
||||
name: 'groupLink',
|
||||
data: [{
|
||||
name: 'cmdUrl',
|
||||
title: 'URL/Link',
|
||||
icon: 'glyphicon glyphicon-globe',
|
||||
callback: function(e){
|
||||
// Give [] surround the selection and prepend the link
|
||||
var chunk, cursor, selected = e.getSelection(), content = e.getContent(), link
|
||||
|
||||
if (selected.length == 0) {
|
||||
// Give extra word
|
||||
chunk = 'enter link description here'
|
||||
} else {
|
||||
chunk = selected.text
|
||||
}
|
||||
|
||||
link = prompt('Insert Hyperlink','http://')
|
||||
|
||||
if (link != null) {
|
||||
// transform selection and set the cursor into chunked text
|
||||
e.replaceSelection('['+chunk+']('+link+')')
|
||||
cursor = selected.start+1
|
||||
|
||||
// Set the cursor
|
||||
e.setSelection(cursor,cursor+chunk.length)
|
||||
}
|
||||
}
|
||||
},{
|
||||
name: 'cmdImage',
|
||||
title: 'Image',
|
||||
icon: 'glyphicon glyphicon-picture',
|
||||
callback: function(e){
|
||||
// Give ![] surround the selection and prepend the image link
|
||||
var chunk, cursor, selected = e.getSelection(), content = e.getContent(), link
|
||||
|
||||
if (selected.length == 0) {
|
||||
// Give extra word
|
||||
chunk = 'enter image description here'
|
||||
} else {
|
||||
chunk = selected.text
|
||||
}
|
||||
|
||||
link = prompt('Insert Image Hyperlink','http://')
|
||||
|
||||
if (link != null) {
|
||||
// transform selection and set the cursor into chunked text
|
||||
e.replaceSelection('')
|
||||
cursor = selected.start+2
|
||||
|
||||
// Set the next tab
|
||||
e.setNextTab('enter image title here')
|
||||
|
||||
// Set the cursor
|
||||
e.setSelection(cursor,cursor+chunk.length)
|
||||
}
|
||||
}
|
||||
}]
|
||||
},{
|
||||
name: 'groupMisc',
|
||||
data: [{
|
||||
name: 'cmdList',
|
||||
title: 'List',
|
||||
icon: 'glyphicon glyphicon-list',
|
||||
callback: function(e){
|
||||
// Prepend/Give - surround the selection
|
||||
var chunk, cursor, selected = e.getSelection(), content = e.getContent()
|
||||
|
||||
// transform selection and set the cursor into chunked text
|
||||
if (selected.length == 0) {
|
||||
// Give extra word
|
||||
chunk = 'list text here'
|
||||
|
||||
e.replaceSelection('- '+chunk)
|
||||
|
||||
// Set the cursor
|
||||
cursor = selected.start+2
|
||||
} else {
|
||||
if (selected.text.indexOf('\n') < 0) {
|
||||
chunk = selected.text
|
||||
|
||||
e.replaceSelection('- '+chunk)
|
||||
|
||||
// Set the cursor
|
||||
cursor = selected.start+2
|
||||
} else {
|
||||
var list = []
|
||||
|
||||
list = selected.text.split('\n')
|
||||
chunk = list[0]
|
||||
|
||||
$.each(list,function(k,v) {
|
||||
list[k] = '- '+v
|
||||
})
|
||||
|
||||
e.replaceSelection('\n\n'+list.join('\n'))
|
||||
|
||||
// Set the cursor
|
||||
cursor = selected.start+4
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
// Set the cursor
|
||||
e.setSelection(cursor,cursor+chunk.length)
|
||||
}
|
||||
}]
|
||||
},{
|
||||
name: 'groupUtil',
|
||||
data: [{
|
||||
name: 'cmdPreview',
|
||||
toggle: true,
|
||||
title: 'Preview',
|
||||
btnText: 'Preview',
|
||||
btnClass: 'btn btn-primary btn-sm',
|
||||
icon: 'glyphicon glyphicon-search',
|
||||
callback: function(e){
|
||||
// Check the preview mode and toggle based on this flag
|
||||
var isPreview = e.$isPreview,content
|
||||
|
||||
if (isPreview == false) {
|
||||
// Give flag that tell the editor enter preview mode
|
||||
e.showPreview()
|
||||
} else {
|
||||
e.hidePreview()
|
||||
}
|
||||
}
|
||||
}]
|
||||
}]
|
||||
],
|
||||
additionalButtons:[], // Place to hook more buttons by code
|
||||
|
||||
/* Events hook */
|
||||
onShow: function (e) {},
|
||||
onPreview: function (e) {},
|
||||
onSave: function (e) {},
|
||||
onBlur: function (e) {}
|
||||
}
|
||||
|
||||
$.fn.markdown.Constructor = Markdown
|
||||
|
||||
|
||||
/* MARKDOWN NO CONFLICT
|
||||
* ==================== */
|
||||
|
||||
$.fn.markdown.noConflict = function () {
|
||||
$.fn.markdown = old
|
||||
return this
|
||||
}
|
||||
|
||||
/* MARKDOWN GLOBAL FUNCTION & DATA-API
|
||||
* ==================================== */
|
||||
var initMarkdown = function(el) {
|
||||
var $this = el
|
||||
|
||||
if ($this.data('markdown')) {
|
||||
$this.data('markdown').showEditor()
|
||||
return
|
||||
}
|
||||
$this.markdown($this.data())
|
||||
}
|
||||
|
||||
var analyzeMarkdown = function(e) {
|
||||
var blurred = false,
|
||||
el,
|
||||
$docEditor = $(e.currentTarget)
|
||||
|
||||
// Check whether it was editor childs or not
|
||||
if ((e.type == 'focusin' || e.type == 'click') && $docEditor.length == 1 && typeof $docEditor[0] == 'object'){
|
||||
el = $docEditor[0].activeElement
|
||||
if ( ! $(el).data('markdown')) {
|
||||
if (typeof $(el).parent().parent().parent().attr('class') == "undefined"
|
||||
|| $(el).parent().parent().parent().attr('class').indexOf('md-editor') < 0) {
|
||||
if ( typeof $(el).parent().parent().attr('class') == "undefined"
|
||||
|| $(el).parent().parent().attr('class').indexOf('md-editor') < 0) {
|
||||
|
||||
blurred = true
|
||||
}
|
||||
} else {
|
||||
blurred = false
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
if (blurred) {
|
||||
// Blur event
|
||||
$(document).find('.md-editor').each(function(){
|
||||
var parentMd = $(el).parent()
|
||||
|
||||
if ($(this).attr('id') != parentMd.attr('id')) {
|
||||
var attachedMarkdown
|
||||
|
||||
if (attachedMarkdown = $(this).find('textarea').data('markdown'),
|
||||
attachedMarkdown == null) {
|
||||
attachedMarkdown = $(this).find('div[data-provider="markdown-preview"]').data('markdown')
|
||||
}
|
||||
|
||||
if (attachedMarkdown) {
|
||||
attachedMarkdown.blur()
|
||||
}
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
e.stopPropagation()
|
||||
}
|
||||
}
|
||||
|
||||
$(document)
|
||||
.on('click.markdown.data-api', '[data-provide="markdown-editable"]', function (e) {
|
||||
initMarkdown($(this))
|
||||
e.preventDefault()
|
||||
})
|
||||
.on('click', function (e) {
|
||||
analyzeMarkdown(e)
|
||||
})
|
||||
.on('focusin', function (e) {
|
||||
analyzeMarkdown(e)
|
||||
})
|
||||
.ready(function(){
|
||||
$('textarea[data-provide="markdown"]').each(function(){
|
||||
initMarkdown($(this))
|
||||
})
|
||||
})
|
||||
|
||||
}(window.jQuery);
|
||||
@@ -0,0 +1 @@
|
||||
.md-editor{display:block;border:1px solid #ddd}.md-editor>.md-header,.md-editor .md-footer{display:block;padding:6px 4px;background:#fff}.md-editor>.md-preview{background:#fff;border-top:1px dashed #ddd;border-bottom:1px dashed #ddd;min-height:10px}.md-editor>textarea{font-family:Monaco,Menlo,Consolas,"Courier New",monospace;font-size:14px;outline:0;outline:thin dotted \9;margin:0;display:block;padding:0;width:100%;border:0;border-top:1px dashed #ddd;border-bottom:1px dashed #ddd;border-radius:0;box-shadow:none;background:#eee}.md-editor>textarea:focus{box-shadow:none;background:#fff}.md-editor.active{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,0.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,0.6)}
|
||||
@@ -0,0 +1,997 @@
|
||||
/* ===================================================
|
||||
* bootstrap-markdown.js v2.1.1
|
||||
* http://github.com/toopay/bootstrap-markdown
|
||||
* ===================================================
|
||||
* Copyright 2013 Taufan Aditya
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
* ========================================================== */
|
||||
|
||||
!function ($) {
|
||||
|
||||
"use strict"; // jshint ;_;
|
||||
|
||||
|
||||
/* MARKDOWN CLASS DEFINITION
|
||||
* ========================== */
|
||||
|
||||
var Markdown = function (element, options) {
|
||||
// Class Properties
|
||||
this.$ns = 'bootstrap-markdown'
|
||||
this.$element = $(element)
|
||||
this.$editable = {el:null, type:null,attrKeys:[], attrValues:[], content:null}
|
||||
this.$options = $.extend(true, {}, $.fn.markdown.defaults, options)
|
||||
this.$oldContent = null
|
||||
this.$isPreview = false
|
||||
this.$editor = null
|
||||
this.$textarea = null
|
||||
this.$handler = []
|
||||
this.$callback = []
|
||||
this.$nextTab = []
|
||||
|
||||
this.showEditor()
|
||||
}
|
||||
|
||||
Markdown.prototype = {
|
||||
|
||||
constructor: Markdown
|
||||
|
||||
, __alterButtons: function(name,alter) {
|
||||
var handler = this.$handler, isAll = (name == 'all'),that = this
|
||||
|
||||
$.each(handler,function(k,v) {
|
||||
var halt = true
|
||||
if (isAll) {
|
||||
halt = false
|
||||
} else {
|
||||
halt = v.indexOf(name) < 0
|
||||
}
|
||||
|
||||
if (halt == false) {
|
||||
alter(that.$editor.find('button[data-handler="'+v+'"]'))
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
, __buildButtons: function(buttonsArray, container) {
|
||||
var i,
|
||||
ns = this.$ns,
|
||||
handler = this.$handler,
|
||||
callback = this.$callback
|
||||
|
||||
for (i=0;i<buttonsArray.length;i++) {
|
||||
// Build each group container
|
||||
var y, btnGroups = buttonsArray[i]
|
||||
for (y=0;y<btnGroups.length;y++) {
|
||||
// Build each button group
|
||||
var z,
|
||||
buttons = btnGroups[y].data,
|
||||
btnGroupContainer = $('<div/>', {
|
||||
'class': 'btn-group'
|
||||
})
|
||||
|
||||
for (z=0;z<buttons.length;z++) {
|
||||
var button = buttons[z],
|
||||
buttonToggle = '',
|
||||
buttonHandler = ns+'-'+button.name,
|
||||
btnText = button.btnText ? button.btnText : '',
|
||||
btnClass = button.btnClass ? button.btnClass : 'btn',
|
||||
tabIndex = button.tabIndex ? button.tabIndex : '-1'
|
||||
|
||||
if (button.toggle == true) {
|
||||
buttonToggle = ' data-toggle="button"'
|
||||
}
|
||||
|
||||
// Attach the button object
|
||||
btnGroupContainer.append('<button class="'
|
||||
+btnClass
|
||||
+' btn-default btn-sm" title="'
|
||||
+button.title
|
||||
+'" tabindex="'
|
||||
+tabIndex
|
||||
+'" data-provider="'
|
||||
+ns
|
||||
+'" data-handler="'
|
||||
+buttonHandler
|
||||
+'"'
|
||||
+buttonToggle
|
||||
+'><span class="'
|
||||
+button.icon
|
||||
+'"></span> '
|
||||
+btnText
|
||||
+'</button>')
|
||||
|
||||
// Register handler and callback
|
||||
handler.push(buttonHandler)
|
||||
callback.push(button.callback)
|
||||
}
|
||||
|
||||
// Attach the button group into container dom
|
||||
container.append(btnGroupContainer)
|
||||
}
|
||||
}
|
||||
|
||||
return container
|
||||
}
|
||||
, __setListener: function() {
|
||||
// Set size and resizable Properties
|
||||
var hasRows = typeof this.$textarea.attr('rows') != 'undefined',
|
||||
maxRows = this.$textarea.val().split("\n").length > 5 ? this.$textarea.val().split("\n").length : '5',
|
||||
rowsVal = hasRows ? this.$textarea.attr('rows') : maxRows
|
||||
|
||||
this.$textarea.attr('rows',rowsVal)
|
||||
this.$textarea.css('resize','none')
|
||||
|
||||
this.$textarea
|
||||
.on('focus', $.proxy(this.focus, this))
|
||||
.on('keypress', $.proxy(this.keypress, this))
|
||||
.on('keyup', $.proxy(this.keyup, this))
|
||||
|
||||
if (this.eventSupported('keydown')) {
|
||||
this.$textarea.on('keydown', $.proxy(this.keydown, this))
|
||||
}
|
||||
|
||||
// Re-attach markdown data
|
||||
this.$textarea.data('markdown',this)
|
||||
}
|
||||
|
||||
, __handle: function(e) {
|
||||
var target = $(e.currentTarget),
|
||||
handler = this.$handler,
|
||||
callback = this.$callback,
|
||||
handlerName = target.attr('data-handler'),
|
||||
callbackIndex = handler.indexOf(handlerName),
|
||||
callbackHandler = callback[callbackIndex]
|
||||
|
||||
// Trigger the focusin
|
||||
$(e.currentTarget).focus()
|
||||
|
||||
callbackHandler(this)
|
||||
|
||||
// Unless it was the save handler,
|
||||
// focusin the textarea
|
||||
if (handlerName.indexOf('cmdSave') < 0) {
|
||||
this.$textarea.focus()
|
||||
}
|
||||
|
||||
e.preventDefault()
|
||||
}
|
||||
|
||||
, showEditor: function() {
|
||||
var instance = this,
|
||||
textarea,
|
||||
ns = this.$ns,
|
||||
container = this.$element,
|
||||
originalHeigth = container.css('height'),
|
||||
originalWidth = container.css('width'),
|
||||
editable = this.$editable,
|
||||
handler = this.$handler,
|
||||
callback = this.$callback,
|
||||
options = this.$options,
|
||||
editor = $( '<div/>', {
|
||||
'class': 'md-editor',
|
||||
click: function() {
|
||||
instance.focus()
|
||||
}
|
||||
})
|
||||
|
||||
// Prepare the editor
|
||||
if (this.$editor == null) {
|
||||
// Create the panel
|
||||
var editorHeader = $('<div/>', {
|
||||
'class': 'md-header btn-toolbar'
|
||||
})
|
||||
|
||||
// Build the main buttons
|
||||
if (options.buttons.length > 0) {
|
||||
editorHeader = this.__buildButtons(options.buttons, editorHeader)
|
||||
}
|
||||
|
||||
// Build the additional buttons
|
||||
if (options.additionalButtons.length > 0) {
|
||||
editorHeader = this.__buildButtons(options.additionalButtons, editorHeader)
|
||||
}
|
||||
|
||||
editor.append(editorHeader)
|
||||
|
||||
// Wrap the textarea
|
||||
if (container.is('textarea')) {
|
||||
container.before(editor)
|
||||
textarea = container
|
||||
textarea.addClass('md-input')
|
||||
editor.append(textarea)
|
||||
} else {
|
||||
var rawContent = (typeof toMarkdown == 'function') ? toMarkdown(container.html()) : container.html(),
|
||||
currentContent = $.trim(rawContent)
|
||||
|
||||
// This is some arbitrary content that could be edited
|
||||
textarea = $('<textarea/>', {
|
||||
'class': 'md-input',
|
||||
'val' : currentContent
|
||||
})
|
||||
|
||||
editor.append(textarea)
|
||||
|
||||
// Save the editable
|
||||
editable.el = container
|
||||
editable.type = container.prop('tagName').toLowerCase()
|
||||
editable.content = container.html()
|
||||
|
||||
$(container[0].attributes).each(function(){
|
||||
editable.attrKeys.push(this.nodeName)
|
||||
editable.attrValues.push(this.nodeValue)
|
||||
})
|
||||
|
||||
// Set editor to blocked the original container
|
||||
container.replaceWith(editor)
|
||||
}
|
||||
|
||||
// Create the footer if savable
|
||||
if (options.savable) {
|
||||
var editorFooter = $('<div/>', {
|
||||
'class': 'md-footer'
|
||||
}),
|
||||
saveHandler = 'cmdSave'
|
||||
|
||||
// Register handler and callback
|
||||
handler.push(saveHandler)
|
||||
callback.push(options.onSave)
|
||||
|
||||
editorFooter.append('<button class="btn btn-success" data-provider="'
|
||||
+ns
|
||||
+'" data-handler="'
|
||||
+saveHandler
|
||||
+'"><i class="icon icon-white icon-ok"></i> Save</button>')
|
||||
|
||||
editor.append(editorFooter)
|
||||
}
|
||||
|
||||
// Set width/height
|
||||
$.each(['height','width'],function(k,attr){
|
||||
if (options[attr] != 'inherit') {
|
||||
if (jQuery.isNumeric(options[attr])) {
|
||||
editor.css(attr,options[attr]+'px')
|
||||
} else {
|
||||
editor.addClass(options[attr])
|
||||
}
|
||||
}
|
||||
})
|
||||
|
||||
// Reference
|
||||
this.$editor = editor
|
||||
this.$textarea = textarea
|
||||
this.$editable = editable
|
||||
this.$oldContent = this.getContent()
|
||||
|
||||
this.__setListener()
|
||||
|
||||
// Set editor attributes, data short-hand API and listener
|
||||
this.$editor.attr('id',(new Date).getTime())
|
||||
this.$editor.on('click', '[data-provider="bootstrap-markdown"]', $.proxy(this.__handle, this))
|
||||
|
||||
} else {
|
||||
this.$editor.show()
|
||||
}
|
||||
|
||||
if (options.autofocus) {
|
||||
this.$textarea.focus()
|
||||
this.$editor.addClass('active')
|
||||
}
|
||||
|
||||
// Trigger the onShow hook
|
||||
options.onShow(this)
|
||||
|
||||
return this
|
||||
}
|
||||
|
||||
, showPreview: function() {
|
||||
var options = this.$options,
|
||||
callbackContent = options.onPreview(this), // Try to get the content from callback
|
||||
container = this.$textarea,
|
||||
afterContainer = container.next(),
|
||||
replacementContainer = $('<div/>',{'class':'md-preview','data-provider':'markdown-preview'}),
|
||||
content
|
||||
|
||||
// Give flag that tell the editor enter preview mode
|
||||
this.$isPreview = true
|
||||
// Disable all buttons
|
||||
this.disableButtons('all').enableButtons('cmdPreview')
|
||||
|
||||
if (typeof callbackContent == 'string') {
|
||||
// Set the content based by callback content
|
||||
content = callbackContent
|
||||
} else {
|
||||
// Set the content
|
||||
content = (typeof markdown == 'object') ? markdown.toHTML(container.val()) : container.val()
|
||||
}
|
||||
|
||||
// Build preview element
|
||||
replacementContainer.html(content)
|
||||
|
||||
if (afterContainer && afterContainer.attr('class') == 'md-footer') {
|
||||
// If there is footer element, insert the preview container before it
|
||||
replacementContainer.insertBefore(afterContainer)
|
||||
} else {
|
||||
// Otherwise, just append it after textarea
|
||||
container.parent().append(replacementContainer)
|
||||
}
|
||||
|
||||
// Hide the last-active textarea
|
||||
container.hide()
|
||||
|
||||
// Attach the editor instances
|
||||
replacementContainer.data('markdown',this)
|
||||
|
||||
return this
|
||||
}
|
||||
|
||||
, hidePreview: function() {
|
||||
// Give flag that tell the editor quit preview mode
|
||||
this.$isPreview = false
|
||||
|
||||
// Obtain the preview container
|
||||
var container = this.$editor.find('div[data-provider="markdown-preview"]')
|
||||
|
||||
// Remove the preview container
|
||||
container.remove()
|
||||
|
||||
// Enable all buttons
|
||||
this.enableButtons('all')
|
||||
|
||||
// Back to the editor
|
||||
this.$textarea.show()
|
||||
this.__setListener()
|
||||
|
||||
return this
|
||||
}
|
||||
|
||||
, isDirty: function() {
|
||||
return this.$oldContent != this.getContent()
|
||||
}
|
||||
|
||||
, getContent: function() {
|
||||
return this.$textarea.val()
|
||||
}
|
||||
|
||||
, setContent: function(content) {
|
||||
this.$textarea.val(content)
|
||||
|
||||
return this
|
||||
}
|
||||
|
||||
, findSelection: function(chunk) {
|
||||
var content = this.getContent(), startChunkPosition
|
||||
|
||||
if (startChunkPosition = content.indexOf(chunk), startChunkPosition >= 0 && chunk.length > 0) {
|
||||
var oldSelection = this.getSelection(), selection
|
||||
|
||||
this.setSelection(startChunkPosition,startChunkPosition+chunk.length)
|
||||
selection = this.getSelection()
|
||||
|
||||
this.setSelection(oldSelection.start,oldSelection.end)
|
||||
|
||||
return selection
|
||||
} else {
|
||||
return null
|
||||
}
|
||||
}
|
||||
|
||||
, getSelection: function() {
|
||||
|
||||
var e = this.$textarea[0]
|
||||
|
||||
return (
|
||||
|
||||
('selectionStart' in e && function() {
|
||||
var l = e.selectionEnd - e.selectionStart
|
||||
return { start: e.selectionStart, end: e.selectionEnd, length: l, text: e.value.substr(e.selectionStart, l) }
|
||||
}) ||
|
||||
|
||||
/* browser not supported */
|
||||
function() {
|
||||
return null
|
||||
}
|
||||
|
||||
)()
|
||||
|
||||
}
|
||||
|
||||
, setSelection: function(start,end) {
|
||||
|
||||
var e = this.$textarea[0]
|
||||
|
||||
return (
|
||||
|
||||
('selectionStart' in e && function() {
|
||||
e.selectionStart = start
|
||||
e.selectionEnd = end
|
||||
return
|
||||
}) ||
|
||||
|
||||
/* browser not supported */
|
||||
function() {
|
||||
return null
|
||||
}
|
||||
|
||||
)()
|
||||
|
||||
}
|
||||
|
||||
, replaceSelection: function(text) {
|
||||
|
||||
var e = this.$textarea[0]
|
||||
|
||||
return (
|
||||
|
||||
('selectionStart' in e && function() {
|
||||
e.value = e.value.substr(0, e.selectionStart) + text + e.value.substr(e.selectionEnd, e.value.length)
|
||||
// Set cursor to the last replacement end
|
||||
e.selectionStart = e.value.length
|
||||
return this
|
||||
}) ||
|
||||
|
||||
/* browser not supported */
|
||||
function() {
|
||||
e.value += text
|
||||
return jQuery(e)
|
||||
}
|
||||
|
||||
)()
|
||||
|
||||
}
|
||||
|
||||
, getNextTab: function() {
|
||||
// Shift the nextTab
|
||||
if (this.$nextTab.length == 0) {
|
||||
return null
|
||||
} else {
|
||||
var nextTab, tab = this.$nextTab.shift()
|
||||
|
||||
if (typeof tab == 'function') {
|
||||
nextTab = tab()
|
||||
} else if (typeof tab == 'object' && tab.length > 0) {
|
||||
nextTab = tab
|
||||
}
|
||||
|
||||
return nextTab
|
||||
}
|
||||
}
|
||||
|
||||
, setNextTab: function(start,end) {
|
||||
// Push new selection into nextTab collections
|
||||
if (typeof start == 'string') {
|
||||
var that = this
|
||||
this.$nextTab.push(function(){
|
||||
return that.findSelection(start)
|
||||
})
|
||||
} else if (typeof start == 'numeric' && typeof end == 'numeric') {
|
||||
var oldSelection = this.getSelection()
|
||||
|
||||
this.setSelection(start,end)
|
||||
this.$nextTab.push(this.getSelection())
|
||||
|
||||
this.setSelection(oldSelection.start,oldSelection.end)
|
||||
}
|
||||
|
||||
return
|
||||
}
|
||||
|
||||
, enableButtons: function(name) {
|
||||
var alter = function (el) {
|
||||
el.removeAttr('disabled')
|
||||
}
|
||||
|
||||
this.__alterButtons(name,alter)
|
||||
|
||||
return this
|
||||
}
|
||||
|
||||
, disableButtons: function(name) {
|
||||
var alter = function (el) {
|
||||
el.attr('disabled','disabled')
|
||||
}
|
||||
|
||||
this.__alterButtons(name,alter)
|
||||
|
||||
return this
|
||||
}
|
||||
|
||||
, eventSupported: function(eventName) {
|
||||
var isSupported = eventName in this.$element
|
||||
if (!isSupported) {
|
||||
this.$element.setAttribute(eventName, 'return;')
|
||||
isSupported = typeof this.$element[eventName] === 'function'
|
||||
}
|
||||
return isSupported
|
||||
}
|
||||
|
||||
, keydown: function (e) {
|
||||
this.suppressKeyPressRepeat = ~$.inArray(e.keyCode, [40,38,9,13,27])
|
||||
this.keyup(e)
|
||||
}
|
||||
|
||||
, keypress: function (e) {
|
||||
if (this.suppressKeyPressRepeat) return
|
||||
this.keyup(e)
|
||||
}
|
||||
|
||||
, keyup: function (e) {
|
||||
var blocked = false
|
||||
switch(e.keyCode) {
|
||||
case 40: // down arrow
|
||||
case 38: // up arrow
|
||||
case 16: // shift
|
||||
case 17: // ctrl
|
||||
case 18: // alt
|
||||
break
|
||||
|
||||
case 9: // tab
|
||||
var nextTab
|
||||
if (nextTab = this.getNextTab(),nextTab != null) {
|
||||
// Get the nextTab if exists
|
||||
var that = this
|
||||
setTimeout(function(){
|
||||
that.setSelection(nextTab.start,nextTab.end)
|
||||
},500)
|
||||
|
||||
blocked = true
|
||||
} else {
|
||||
// The next tab memory contains nothing...
|
||||
// check the cursor position to determine tab action
|
||||
var cursor = this.getSelection()
|
||||
|
||||
if (cursor.start == cursor.end && cursor.end == this.getContent().length) {
|
||||
// The cursor already reach the end of the content
|
||||
blocked = false
|
||||
|
||||
} else {
|
||||
// Put the cursor to the end
|
||||
this.setSelection(this.getContent().length,this.getContent().length)
|
||||
|
||||
blocked = true
|
||||
}
|
||||
}
|
||||
|
||||
break
|
||||
|
||||
case 13: // enter
|
||||
case 27: // escape
|
||||
blocked = false
|
||||
break
|
||||
|
||||
default:
|
||||
blocked = false
|
||||
}
|
||||
|
||||
if (blocked) {
|
||||
e.stopPropagation()
|
||||
e.preventDefault()
|
||||
}
|
||||
}
|
||||
|
||||
, focus: function (e) {
|
||||
var options = this.$options,
|
||||
isHideable = options.hideable,
|
||||
editor = this.$editor
|
||||
|
||||
editor.addClass('active')
|
||||
|
||||
// Blur other markdown(s)
|
||||
$(document).find('.md-editor').each(function(){
|
||||
if ($(this).attr('id') != editor.attr('id')) {
|
||||
var attachedMarkdown
|
||||
|
||||
if (attachedMarkdown = $(this).find('textarea').data('markdown'),
|
||||
attachedMarkdown == null) {
|
||||
attachedMarkdown = $(this).find('div[data-provider="markdown-preview"]').data('markdown')
|
||||
}
|
||||
|
||||
if (attachedMarkdown) {
|
||||
attachedMarkdown.blur()
|
||||
}
|
||||
}
|
||||
})
|
||||
|
||||
// Trigger the onFocus hook
|
||||
options.onFocus(this);
|
||||
|
||||
return this
|
||||
}
|
||||
|
||||
, blur: function (e) {
|
||||
var options = this.$options,
|
||||
isHideable = options.hideable,
|
||||
editor = this.$editor,
|
||||
editable = this.$editable
|
||||
|
||||
if (editor.hasClass('active') || this.$element.parent().length == 0) {
|
||||
editor.removeClass('active')
|
||||
|
||||
if (isHideable) {
|
||||
|
||||
// Check for editable elements
|
||||
if (editable.el != null) {
|
||||
// Build the original element
|
||||
var oldElement = $('<'+editable.type+'/>'),
|
||||
content = this.getContent(),
|
||||
currentContent = (typeof markdown == 'object') ? markdown.toHTML(content) : content
|
||||
|
||||
$(editable.attrKeys).each(function(k,v) {
|
||||
oldElement.attr(editable.attrKeys[k],editable.attrValues[k])
|
||||
})
|
||||
|
||||
// Get the editor content
|
||||
oldElement.html(currentContent)
|
||||
|
||||
editor.replaceWith(oldElement)
|
||||
} else {
|
||||
editor.hide()
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
// Trigger the onBlur hook
|
||||
options.onBlur(this)
|
||||
}
|
||||
|
||||
return this
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
/* MARKDOWN PLUGIN DEFINITION
|
||||
* ========================== */
|
||||
|
||||
var old = $.fn.markdown
|
||||
|
||||
$.fn.markdown = function (option) {
|
||||
return this.each(function () {
|
||||
var $this = $(this)
|
||||
, data = $this.data('markdown')
|
||||
, options = typeof option == 'object' && option
|
||||
if (!data) $this.data('markdown', (data = new Markdown(this, options)))
|
||||
})
|
||||
}
|
||||
|
||||
$.fn.markdown.defaults = {
|
||||
/* Editor Properties */
|
||||
autofocus: false,
|
||||
hideable: false,
|
||||
savable:false,
|
||||
width: 'inherit',
|
||||
height: 'inherit',
|
||||
|
||||
/* Buttons Properties */
|
||||
buttons: [
|
||||
[{
|
||||
name: 'groupFont',
|
||||
data: [{
|
||||
name: 'cmdBold',
|
||||
title: 'Bold',
|
||||
icon: 'glyphicon glyphicon-bold',
|
||||
callback: function(e){
|
||||
// Give/remove ** surround the selection
|
||||
var chunk, cursor, selected = e.getSelection(), content = e.getContent()
|
||||
|
||||
if (selected.length == 0) {
|
||||
// Give extra word
|
||||
chunk = 'strong text'
|
||||
} else {
|
||||
chunk = selected.text
|
||||
}
|
||||
|
||||
// transform selection and set the cursor into chunked text
|
||||
if (content.substr(selected.start-2,2) == '**'
|
||||
&& content.substr(selected.end,2) == '**' ) {
|
||||
e.setSelection(selected.start-2,selected.end+2)
|
||||
e.replaceSelection(chunk)
|
||||
cursor = selected.start-2
|
||||
} else {
|
||||
e.replaceSelection('**'+chunk+'**')
|
||||
cursor = selected.start+2
|
||||
}
|
||||
|
||||
// Set the cursor
|
||||
e.setSelection(cursor,cursor+chunk.length)
|
||||
}
|
||||
},{
|
||||
name: 'cmdItalic',
|
||||
title: 'Italic',
|
||||
icon: 'glyphicon glyphicon-italic',
|
||||
callback: function(e){
|
||||
// Give/remove * surround the selection
|
||||
var chunk, cursor, selected = e.getSelection(), content = e.getContent()
|
||||
|
||||
if (selected.length == 0) {
|
||||
// Give extra word
|
||||
chunk = 'emphasized text'
|
||||
} else {
|
||||
chunk = selected.text
|
||||
}
|
||||
|
||||
// transform selection and set the cursor into chunked text
|
||||
if (content.substr(selected.start-1,1) == '*'
|
||||
&& content.substr(selected.end,1) == '*' ) {
|
||||
e.setSelection(selected.start-1,selected.end+1)
|
||||
e.replaceSelection(chunk)
|
||||
cursor = selected.start-1
|
||||
} else {
|
||||
e.replaceSelection('*'+chunk+'*')
|
||||
cursor = selected.start+1
|
||||
}
|
||||
|
||||
// Set the cursor
|
||||
e.setSelection(cursor,cursor+chunk.length)
|
||||
}
|
||||
},{
|
||||
name: 'cmdHeading',
|
||||
title: 'Heading',
|
||||
icon: 'glyphicon glyphicon-header',
|
||||
callback: function(e){
|
||||
// Append/remove ### surround the selection
|
||||
var chunk, cursor, selected = e.getSelection(), content = e.getContent(), pointer, prevChar
|
||||
|
||||
if (selected.length == 0) {
|
||||
// Give extra word
|
||||
chunk = 'heading text'
|
||||
} else {
|
||||
chunk = selected.text + '\n';
|
||||
}
|
||||
|
||||
// transform selection and set the cursor into chunked text
|
||||
if ((pointer = 4, content.substr(selected.start-pointer,pointer) == '### ')
|
||||
|| (pointer = 3, content.substr(selected.start-pointer,pointer) == '###')) {
|
||||
e.setSelection(selected.start-pointer,selected.end)
|
||||
e.replaceSelection(chunk)
|
||||
cursor = selected.start-pointer
|
||||
} else if (selected.start > 0 && (prevChar = content.substr(selected.start-1,1), !!prevChar && prevChar != '\n')) {
|
||||
e.replaceSelection('\n\n### '+chunk)
|
||||
cursor = selected.start+6
|
||||
} else {
|
||||
// Empty string before element
|
||||
e.replaceSelection('### '+chunk)
|
||||
cursor = selected.start+4
|
||||
}
|
||||
|
||||
// Set the cursor
|
||||
e.setSelection(cursor,cursor+chunk.length)
|
||||
}
|
||||
}]
|
||||
},{
|
||||
name: 'groupLink',
|
||||
data: [{
|
||||
name: 'cmdUrl',
|
||||
title: 'URL/Link',
|
||||
icon: 'glyphicon glyphicon-globe',
|
||||
callback: function(e){
|
||||
// Give [] surround the selection and prepend the link
|
||||
var chunk, cursor, selected = e.getSelection(), content = e.getContent(), link
|
||||
|
||||
if (selected.length == 0) {
|
||||
// Give extra word
|
||||
chunk = 'enter link description here'
|
||||
} else {
|
||||
chunk = selected.text
|
||||
}
|
||||
|
||||
link = prompt('Insert Hyperlink','http://')
|
||||
|
||||
if (link != null && link != '' && link != 'http://') {
|
||||
// transform selection and set the cursor into chunked text
|
||||
e.replaceSelection('['+chunk+']('+link+')')
|
||||
cursor = selected.start+1
|
||||
|
||||
// Set the cursor
|
||||
e.setSelection(cursor,cursor+chunk.length)
|
||||
}
|
||||
}
|
||||
},{
|
||||
name: 'cmdImage',
|
||||
title: 'Image',
|
||||
icon: 'glyphicon glyphicon-picture',
|
||||
callback: function(e){
|
||||
// Give ![] surround the selection and prepend the image link
|
||||
var chunk, cursor, selected = e.getSelection(), content = e.getContent(), link
|
||||
|
||||
if (selected.length == 0) {
|
||||
// Give extra word
|
||||
chunk = 'enter image description here'
|
||||
} else {
|
||||
chunk = selected.text
|
||||
}
|
||||
|
||||
link = prompt('Insert Image Hyperlink','http://')
|
||||
|
||||
if (link != null) {
|
||||
// transform selection and set the cursor into chunked text
|
||||
e.replaceSelection('')
|
||||
cursor = selected.start+2
|
||||
|
||||
// Set the next tab
|
||||
e.setNextTab('enter image title here')
|
||||
|
||||
// Set the cursor
|
||||
e.setSelection(cursor,cursor+chunk.length)
|
||||
}
|
||||
}
|
||||
}]
|
||||
},{
|
||||
name: 'groupMisc',
|
||||
data: [{
|
||||
name: 'cmdList',
|
||||
title: 'List',
|
||||
icon: 'glyphicon glyphicon-list',
|
||||
callback: function(e){
|
||||
// Prepend/Give - surround the selection
|
||||
var chunk, cursor, selected = e.getSelection(), content = e.getContent()
|
||||
|
||||
// transform selection and set the cursor into chunked text
|
||||
if (selected.length == 0) {
|
||||
// Give extra word
|
||||
chunk = 'list text here'
|
||||
|
||||
e.replaceSelection('- '+chunk)
|
||||
|
||||
// Set the cursor
|
||||
cursor = selected.start+2
|
||||
} else {
|
||||
if (selected.text.indexOf('\n') < 0) {
|
||||
chunk = selected.text
|
||||
|
||||
e.replaceSelection('- '+chunk)
|
||||
|
||||
// Set the cursor
|
||||
cursor = selected.start+2
|
||||
} else {
|
||||
var list = []
|
||||
|
||||
list = selected.text.split('\n')
|
||||
chunk = list[0]
|
||||
|
||||
$.each(list,function(k,v) {
|
||||
list[k] = '- '+v
|
||||
})
|
||||
|
||||
e.replaceSelection('\n\n'+list.join('\n'))
|
||||
|
||||
// Set the cursor
|
||||
cursor = selected.start+4
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
// Set the cursor
|
||||
e.setSelection(cursor,cursor+chunk.length)
|
||||
}
|
||||
}]
|
||||
},{
|
||||
name: 'groupUtil',
|
||||
data: [{
|
||||
name: 'cmdPreview',
|
||||
toggle: true,
|
||||
title: 'Preview',
|
||||
btnText: 'Preview',
|
||||
btnClass: 'btn btn-primary btn-sm',
|
||||
icon: 'glyphicon glyphicon-search',
|
||||
callback: function(e){
|
||||
// Check the preview mode and toggle based on this flag
|
||||
var isPreview = e.$isPreview,content
|
||||
|
||||
if (isPreview == false) {
|
||||
// Give flag that tell the editor enter preview mode
|
||||
e.showPreview()
|
||||
} else {
|
||||
e.hidePreview()
|
||||
}
|
||||
}
|
||||
}]
|
||||
}]
|
||||
],
|
||||
additionalButtons:[], // Place to hook more buttons by code
|
||||
|
||||
/* Events hook */
|
||||
onShow: function (e) {},
|
||||
onPreview: function (e) {},
|
||||
onSave: function (e) {},
|
||||
onBlur: function (e) {},
|
||||
onFocus: function (e) {},
|
||||
}
|
||||
|
||||
$.fn.markdown.Constructor = Markdown
|
||||
|
||||
|
||||
/* MARKDOWN NO CONFLICT
|
||||
* ==================== */
|
||||
|
||||
$.fn.markdown.noConflict = function () {
|
||||
$.fn.markdown = old
|
||||
return this
|
||||
}
|
||||
|
||||
/* MARKDOWN GLOBAL FUNCTION & DATA-API
|
||||
* ==================================== */
|
||||
var initMarkdown = function(el) {
|
||||
var $this = el
|
||||
|
||||
if ($this.data('markdown')) {
|
||||
$this.data('markdown').showEditor()
|
||||
return
|
||||
}
|
||||
$this.markdown($this.data())
|
||||
}
|
||||
|
||||
var analyzeMarkdown = function(e) {
|
||||
var blurred = false,
|
||||
el,
|
||||
$docEditor = $(e.currentTarget)
|
||||
|
||||
// Check whether it was editor childs or not
|
||||
if ((e.type == 'focusin' || e.type == 'click') && $docEditor.length == 1 && typeof $docEditor[0] == 'object'){
|
||||
el = $docEditor[0].activeElement
|
||||
if ( ! $(el).data('markdown')) {
|
||||
if (typeof $(el).parent().parent().parent().attr('class') == "undefined"
|
||||
|| $(el).parent().parent().parent().attr('class').indexOf('md-editor') < 0) {
|
||||
if ( typeof $(el).parent().parent().attr('class') == "undefined"
|
||||
|| $(el).parent().parent().attr('class').indexOf('md-editor') < 0) {
|
||||
|
||||
blurred = true
|
||||
}
|
||||
} else {
|
||||
blurred = false
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
if (blurred) {
|
||||
// Blur event
|
||||
$(document).find('.md-editor').each(function(){
|
||||
var parentMd = $(el).parent()
|
||||
|
||||
if ($(this).attr('id') != parentMd.attr('id')) {
|
||||
var attachedMarkdown
|
||||
|
||||
if (attachedMarkdown = $(this).find('textarea').data('markdown'),
|
||||
attachedMarkdown == null) {
|
||||
attachedMarkdown = $(this).find('div[data-provider="markdown-preview"]').data('markdown')
|
||||
}
|
||||
|
||||
if (attachedMarkdown) {
|
||||
attachedMarkdown.blur()
|
||||
}
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
e.stopPropagation()
|
||||
}
|
||||
}
|
||||
|
||||
$(document)
|
||||
.on('click.markdown.data-api', '[data-provide="markdown-editable"]', function (e) {
|
||||
initMarkdown($(this))
|
||||
e.preventDefault()
|
||||
})
|
||||
.on('click', function (e) {
|
||||
analyzeMarkdown(e)
|
||||
})
|
||||
.on('focusin', function (e) {
|
||||
analyzeMarkdown(e)
|
||||
})
|
||||
.ready(function(){
|
||||
$('textarea[data-provide="markdown"]').each(function(){
|
||||
initMarkdown($(this))
|
||||
})
|
||||
})
|
||||
|
||||
}(window.jQuery);
|
||||
@@ -0,0 +1,21 @@
|
||||
{
|
||||
"name": "bootstrap-markdown",
|
||||
"filename": "js/bootstrap-markdown.js",
|
||||
"version": "2.1.1",
|
||||
"description": "A bootstrap plugin for markdown editing",
|
||||
"homepage": "https://github.com/toopay/bootstrap-markdown",
|
||||
"keywords": [
|
||||
"twitter",
|
||||
"bootstrap",
|
||||
"markdown",
|
||||
"editor"
|
||||
],
|
||||
"maintainers": [{
|
||||
"name": "Taufan Aditya",
|
||||
"web": "https://github.com/toopay"
|
||||
}],
|
||||
"repositories": [{
|
||||
"type": "git",
|
||||
"url": "https://github.com/toopay/bootstrap-markdown.git"
|
||||
}]
|
||||
}
|
||||
Reference in New Issue
Block a user