|
@@ -458,7 +458,6 @@ showdown.Converter = function (converterOptions) {
|
|
|
* @type {string[]}
|
|
|
*/
|
|
|
parserOrder = [
|
|
|
- 'tables',
|
|
|
'githubCodeBlocks',
|
|
|
'hashHTMLBlocks',
|
|
|
'stripLinkDefinitions',
|
|
@@ -912,6 +911,7 @@ showdown.subParser('blockGamut', function (text, options, globals) {
|
|
|
text = text.replace(/^[ ]{0,2}([ ]?\-[ ]?){3,}[ \t]*$/gm, key);
|
|
|
text = text.replace(/^[ ]{0,2}([ ]?_[ ]?){3,}[ \t]*$/gm, key);
|
|
|
|
|
|
+ text = showdown.subParser('tables')(text, options, globals);
|
|
|
text = showdown.subParser('lists')(text, options, globals);
|
|
|
text = showdown.subParser('codeBlocks')(text, options, globals);
|
|
|
text = showdown.subParser('blockQuotes')(text, options, globals);
|