|
@@ -1,4 +1,4 @@
|
|
|
-;/*! showdown 23-08-2015 */
|
|
|
+;/*! showdown 25-08-2015 */
|
|
|
(function(){
|
|
|
/**
|
|
|
* Created by Tivie on 13-07-2015.
|
|
@@ -1077,6 +1077,7 @@ showdown.subParser('blockQuotes', function (text, options, globals) {
|
|
|
bq = bq.replace(/~0/g, '');
|
|
|
|
|
|
bq = bq.replace(/^[ \t]+$/gm, ''); // trim whitespace-only lines
|
|
|
+ bq = showdown.subParser('githubCodeBlocks')(bq, options, globals);
|
|
|
bq = showdown.subParser('blockGamut')(bq, options, globals); // recurse
|
|
|
|
|
|
bq = bq.replace(/(^|\n)/g, '$1 ');
|