move def lower in paragraph rule

This commit is contained in:
Christopher Jeffrey 2012-01-18 09:34:09 -06:00
parent a1f2bce65f
commit 2112d32e38

View File

@ -59,8 +59,8 @@ block.paragraph = (function() {
('heading')
('lheading')
('blockquote')
('def')
('<(?!' + elements() + ')\\w+');
('<(?!' + elements() + ')\\w+')
('def');
return new
RegExp(paragraph.replace('body', body.join('|')));