Created
June 16, 2012 12:33
-
-
Save ukyo/2941227 to your computer and use it in GitHub Desktop.
markdown GFM
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function(Markdown) { | |
Markdown.dialects.GFM = Markdown.subclassDialect(Markdown.dialects.Gruber); | |
Markdown.dialects.GFM.block.code_syntax_highlighting = function(block, next) { | |
var ret = [], | |
startRe = /^```(.*)\n?((.|\n)*)/, | |
endRe = /(.|\n)*```\n?$/, | |
m = block.match(startRe), | |
lang, code, lineRe, isEnd; | |
if(!block.match(startRe)) return undefined; | |
lang = m[1]; | |
code = m[2]; | |
block_search: | |
do { | |
if(isEnd = endRe.test(code)) code = code.substring(0, code.length - 3); | |
lineRe = new RegExp('^(?:' + (code.match(/(\s*)/)[1] || '') + ')(.*)\\n?'); | |
var b = this.loop_re_over_block(lineRe, code, function(m) {ret.push(m[1])}); | |
if(b.length) ret.push(b); | |
if(next.length && !isEnd) { | |
ret.push ( block.trailing.replace(/[^\n]/g, '').substring(2) ); | |
block = next.shift(); | |
code = block.valueOf(); | |
} else { | |
break block_search; | |
} | |
} while(!isEnd); | |
return [['code_block', {'class': 'lang-' + lang}, ret.join('\n')]]; | |
}; | |
Markdown.buildBlockOrder(Markdown.dialects.GFM.block); | |
Markdown.buildInlinePatterns(Markdown.dialects.GFM.inline); | |
})(markdown.Markdown); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment