@@ -40,7 +40,7 @@ block.item = replace(block.item, 'gm')(/bull/g, block.bullet)();
4040
4141block . list = replace ( block . list ) ( / b u l l / g, block . bullet ) (
4242 'hr' ,
43- / \n + (? = (?: * [ - * _ ] ) { 3 , } * (?: \n + | $ ) ) / ,
43+ / \n + (? = (?: * [ - * _ ] ) { 3 , } * (?: \n + | $ ) ) /
4444) ( ) ;
4545
4646block . _tag =
@@ -51,15 +51,15 @@ block._tag =
5151
5252block . html = replace ( block . html ) ( 'comment' , / < ! - - [ \s \S ] * ?- - > / ) (
5353 'closed' ,
54- / < ( t a g ) [ \s \S ] + ?< \/ \1> / ,
54+ / < ( t a g ) [ \s \S ] + ?< \/ \1> /
5555) ( 'closing' , / < t a g (?: " [ ^ " ] * " | ' [ ^ ' ] * ' | [ ^ ' " > ] ) * ?> / ) ( / t a g / g, block . _tag ) ( ) ;
5656
5757block . paragraph = replace ( block . paragraph ) ( 'hr' , block . hr ) (
5858 'heading' ,
59- block . heading ,
59+ block . heading
6060) ( 'lheading' , block . lheading ) ( 'blockquote' , block . blockquote ) (
6161 'tag' ,
62- '<' + block . _tag ,
62+ '<' + block . _tag
6363) ( 'def' , block . def ) ( ) ;
6464
6565/**
@@ -79,7 +79,7 @@ block.gfm = merge({}, block.normal, {
7979
8080block . gfm . paragraph = replace ( block . paragraph ) (
8181 '(?!' ,
82- '(?!' + block . gfm . fences . source . replace ( '\\1' , '\\2' ) + '|' ,
82+ '(?!' + block . gfm . fences . source . replace ( '\\1' , '\\2' ) + '|'
8383) ( ) ;
8484
8585/**
@@ -456,7 +456,7 @@ inline._href = /\s*<?([^\s]*?)>?(?:\s+['"]([\s\S]*?)['"])?\s*/;
456456
457457inline . link = replace ( inline . link ) ( 'inside' , inline . _inside ) (
458458 'href' ,
459- inline . _href ,
459+ inline . _href
460460) ( ) ;
461461
462462inline . reflink = replace ( inline . reflink ) ( 'inside' , inline . _inside ) ( ) ;
@@ -592,7 +592,7 @@ InlineLexer.prototype.output = function(src) {
592592 this . outputLink ( cap , {
593593 href : cap [ 2 ] ,
594594 title : cap [ 3 ] ,
595- } ) ,
595+ } )
596596 ) ;
597597 continue ;
598598 }
@@ -699,7 +699,7 @@ InlineLexer.prototype.outputLink = function(cap, link) {
699699 title : link . title ,
700700 target : shouldOpenInNewWindow ? '_blank' : '' ,
701701 } ,
702- this . output ( cap [ 1 ] ) ,
702+ this . output ( cap [ 1 ] )
703703 ) ;
704704 } else {
705705 return React . DOM . img (
@@ -708,7 +708,7 @@ InlineLexer.prototype.outputLink = function(cap, link) {
708708 alt : cap [ 1 ] ,
709709 title : link . title ,
710710 } ,
711- null ,
711+ null
712712 ) ;
713713 }
714714} ;
@@ -836,8 +836,8 @@ Parser.prototype.tok = function() { // eslint-disable-line
836836 this . token . align [ i ]
837837 ? { style : { textAlign : this . token . align [ i ] } }
838838 : null ,
839- heading ,
840- ) ,
839+ heading
840+ )
841841 ) ;
842842 }
843843 table . push ( React . DOM . thead ( null , React . DOM . tr ( null , row ) ) ) ;
@@ -852,8 +852,8 @@ Parser.prototype.tok = function() { // eslint-disable-line
852852 this . token . align [ j ]
853853 ? { style : { textAlign : this . token . align [ j ] } }
854854 : null ,
855- this . inline . output ( cells [ j ] ) ,
856- ) ,
855+ this . inline . output ( cells [ j ] )
856+ )
857857 ) ;
858858 }
859859 body . push ( React . DOM . tr ( null , row ) ) ;
@@ -910,7 +910,7 @@ Parser.prototype.tok = function() { // eslint-disable-line
910910 return this . options . paragraphFn
911911 ? this . options . paragraphFn . call (
912912 null ,
913- this . inline . output ( this . token . text ) ,
913+ this . inline . output ( this . token . text )
914914 )
915915 : React . DOM . p ( null , this . inline . output ( this . token . text ) ) ;
916916 }
0 commit comments