This commit is contained in:
joyqi 2017-11-17 10:32:07 +08:00
parent 452fac4099
commit b8788c9e7e
2 changed files with 5 additions and 5 deletions

View File

@ -101,7 +101,7 @@
};
this.hooks = {};
this.html = false;
this.blockParsers = [['code', 10], ['shtml', 20], ['ahtml', 30], ['list', 40], ['math', 50], ['pre', 60], ['html', 70], ['footnote', 80], ['definition', 90], ['quote', 100], ['table', 110], ['sh', 120], ['mh', 130], ['hr', 140], ['default', 9999]];
this.blockParsers = [['code', 10], ['shtml', 20], ['pre', 30], ['ahtml', 40], ['list', 50], ['math', 60], ['html', 70], ['footnote', 80], ['definition', 90], ['quote', 100], ['table', 110], ['sh', 120], ['mh', 130], ['hr', 140], ['default', 9999]];
this.parsers = {};
}

View File

@ -51,10 +51,10 @@ class HyperDown
public $blockParsers = array(
array('code', 10),
array('shtml', 20),
array('ahtml', 30),
array('list', 40),
array('math', 50),
array('pre', 60),
array('pre', 30),
array('ahtml', 40),
array('list', 50),
array('math', 60),
array('html', 70),
array('footnote', 80),
array('definition', 90),