@@ -744,7 +744,7 @@ InlineLexer.prototype.output = function(src) {
744
744
? this . options . sanitizer
745
745
? this . options . sanitizer ( cap [ 0 ] )
746
746
: escape ( cap [ 0 ] )
747
- : cap [ 0 ]
747
+ : cap [ 0 ] ;
748
748
continue ;
749
749
}
750
750
@@ -847,7 +847,7 @@ InlineLexer.prototype.output = function(src) {
847
847
848
848
InlineLexer . escapes = function ( text ) {
849
849
return text ? text . replace ( InlineLexer . rules . _escapes , '$1' ) : text ;
850
- }
850
+ } ;
851
851
852
852
/**
853
853
* Compile Link
@@ -983,7 +983,7 @@ Renderer.prototype.checkbox = function(checked) {
983
983
+ 'disabled="" type="checkbox"'
984
984
+ ( this . options . xhtml ? ' /' : '' )
985
985
+ '> ' ;
986
- }
986
+ } ;
987
987
988
988
Renderer . prototype . paragraph = function ( text ) {
989
989
return '<p>' + text + '</p>\n' ;
@@ -1093,16 +1093,16 @@ TextRenderer.prototype.codespan =
1093
1093
TextRenderer . prototype . del =
1094
1094
TextRenderer . prototype . text = function ( text ) {
1095
1095
return text ;
1096
- }
1096
+ } ;
1097
1097
1098
1098
TextRenderer . prototype . link =
1099
1099
TextRenderer . prototype . image = function ( href , title , text ) {
1100
1100
return '' + text ;
1101
- }
1101
+ } ;
1102
1102
1103
1103
TextRenderer . prototype . br = function ( ) {
1104
1104
return '' ;
1105
- }
1105
+ } ;
1106
1106
1107
1107
/**
1108
1108
* Parsing & Compiling
@@ -1473,7 +1473,7 @@ function marked(src, opt, callback) {
1473
1473
i = 0 ;
1474
1474
1475
1475
try {
1476
- tokens = Lexer . lex ( src , opt )
1476
+ tokens = Lexer . lex ( src , opt ) ;
1477
1477
} catch ( e ) {
1478
1478
return callback ( e ) ;
1479
1479
}
@@ -1572,7 +1572,7 @@ marked.getDefaults = function () {
1572
1572
tables : true ,
1573
1573
xhtml : false
1574
1574
} ;
1575
- }
1575
+ } ;
1576
1576
1577
1577
marked . defaults = marked . getDefaults ( ) ;
1578
1578
0 commit comments