5
5
*/
6
6
7
7
; ( function ( ) {
8
- 'use strict' ;
9
8
10
9
/**
11
10
* Block-Level Grammar
@@ -450,21 +449,21 @@ Lexer.prototype.token = function(src, top, bq) {
450
449
451
450
var inline = {
452
451
escape : / ^ \\ ( [ \\ ` * { } \[ \] ( ) # + \- . ! _ > ] ) / ,
453
- autolink : / ^ < ( [ ^ < > ] + ( @ | : \/ ) [ ^ < > ] + ) > / ,
452
+ autolink : / ^ < ( [ ^ > ] + ( @ | : \/ ) [ ^ > ] + ) > / ,
454
453
url : noop ,
455
- tag : / ^ < ! - - [ \s \S ] * ?- - > | ^ < \/ ? \w + (?: " [ ^ " ] * " | ' [ ^ ' ] * ' | [ ^ < ' " > ] ) * ?> / ,
454
+ tag : / ^ < ! - - [ \s \S ] * ?- - > | ^ < \/ ? \w + (?: " [ ^ " ] * " | ' [ ^ ' ] * ' | [ ^ ' " > ] ) * ?> / ,
456
455
link : / ^ ! ? \[ ( i n s i d e ) \] \( h r e f \) / ,
457
456
reflink : / ^ ! ? \[ ( i n s i d e ) \] \s * \[ ( [ ^ \] ] * ) \] / ,
458
457
nolink : / ^ ! ? \[ ( (?: \[ [ ^ \] ] * \] | [ ^ \[ \] ] ) * ) \] / ,
459
458
strong : / ^ _ _ ( [ \s \S ] + ?) _ _ (? ! _ ) | ^ \* \* ( [ \s \S ] + ?) \* \* (? ! \* ) / ,
460
459
em : / ^ \b _ ( (?: [ ^ _ ] | _ _ ) + ?) _ \b | ^ \* ( (?: \* \* | [ \s \S ] ) + ?) \* (? ! \* ) / ,
461
- code : / ^ ( ` + ) ( [ \s \S ] * ?[ ^ ` ] ) \1(? ! ` ) / ,
460
+ code : / ^ ( ` + ) \s * ( [ \s \S ] * ?[ ^ ` ] ) \s * \1(? ! ` ) / ,
462
461
br : / ^ { 2 , } \n (? ! \s * $ ) / ,
463
462
del : noop ,
464
463
text : / ^ [ \s \S ] + ?(? = [ \\ < ! \[ _ * ` ] | { 2 , } \n | $ ) /
465
464
} ;
466
465
467
- inline . _inside = / (?: \[ [ ^ \] ] * \] | \\ [ \[ \] ] | [ ^ \[ \] ] | \] (? = [ ^ \[ ] * \] ) ) * / ;
466
+ inline . _inside = / (?: \[ [ ^ \] ] * \] | [ ^ \[ \] ] | \] (? = [ ^ \[ ] * \] ) ) * / ;
468
467
inline . _href = / \s * < ? ( [ \s \S ] * ?) > ? (?: \s + [ ' " ] ( [ \s \S ] * ?) [ ' " ] ) ? \s * / ;
469
468
470
469
inline . link = replace ( inline . link )
@@ -579,11 +578,9 @@ InlineLexer.prototype.output = function(src) {
579
578
if ( cap = this . rules . autolink . exec ( src ) ) {
580
579
src = src . substring ( cap [ 0 ] . length ) ;
581
580
if ( cap [ 2 ] === '@' ) {
582
- text = escape (
583
- cap [ 1 ] . charAt ( 6 ) === ':'
581
+ text = cap [ 1 ] . charAt ( 6 ) === ':'
584
582
? this . mangle ( cap [ 1 ] . substring ( 7 ) )
585
- : this . mangle ( cap [ 1 ] )
586
- ) ;
583
+ : this . mangle ( cap [ 1 ] ) ;
587
584
href = this . mangle ( 'mailto:' ) + text ;
588
585
} else {
589
586
text = escape ( cap [ 1 ] ) ;
@@ -664,7 +661,7 @@ InlineLexer.prototype.output = function(src) {
664
661
// code
665
662
if ( cap = this . rules . code . exec ( src ) ) {
666
663
src = src . substring ( cap [ 0 ] . length ) ;
667
- out += this . renderer . codespan ( escape ( cap [ 2 ] . trim ( ) , true ) ) ;
664
+ out += this . renderer . codespan ( escape ( cap [ 2 ] , true ) ) ;
668
665
continue ;
669
666
}
670
667
@@ -876,15 +873,12 @@ Renderer.prototype.link = function(href, title, text) {
876
873
. replace ( / [ ^ \w : ] / g, '' )
877
874
. toLowerCase ( ) ;
878
875
} catch ( e ) {
879
- return text ;
876
+ return '' ;
880
877
}
881
- if ( prot . indexOf ( 'javascript:' ) === 0 || prot . indexOf ( 'vbscript:' ) === 0 || prot . indexOf ( 'data:' ) === 0 ) {
882
- return text ;
878
+ if ( prot . indexOf ( 'javascript:' ) === 0 || prot . indexOf ( 'vbscript:' ) === 0 ) {
879
+ return '' ;
883
880
}
884
881
}
885
- if ( this . options . baseUrl && ! originIndependentUrl . test ( href ) ) {
886
- href = resolveUrl ( this . options . baseUrl , href ) ;
887
- }
888
882
var out = '<a href="' + href + '"' ;
889
883
if ( title ) {
890
884
out += ' title="' + title + '"' ;
@@ -894,9 +888,6 @@ Renderer.prototype.link = function(href, title, text) {
894
888
} ;
895
889
896
890
Renderer . prototype . image = function ( href , title , text ) {
897
- if ( this . options . baseUrl && ! originIndependentUrl . test ( href ) ) {
898
- href = resolveUrl ( this . options . baseUrl , href ) ;
899
- }
900
891
var out = '<img src="' + href + '" alt="' + text + '"' ;
901
892
if ( title ) {
902
893
out += ' title="' + title + '"' ;
@@ -1103,8 +1094,8 @@ function escape(html, encode) {
1103
1094
}
1104
1095
1105
1096
function unescape ( html ) {
1106
- // explicitly match decimal, hex, and named HTML entities
1107
- return html . replace ( / & ( # (?: \d + ) | (?: # x [ 0 - 9 A - F a - f ] + ) | (?: \w + ) ) ; ? / ig , function ( _ , n ) {
1097
+ // explicitly match decimal, hex, and named HTML entities
1098
+ return html . replace ( / & ( # (?: \d + ) | (?: # x [ 0 - 9 A - F a - f ] + ) | (?: \w + ) ) ; ? / g , function ( _ , n ) {
1108
1099
n = n . toLowerCase ( ) ;
1109
1100
if ( n === 'colon' ) return ':' ;
1110
1101
if ( n . charAt ( 0 ) === '#' ) {
@@ -1128,30 +1119,6 @@ function replace(regex, opt) {
1128
1119
} ;
1129
1120
}
1130
1121
1131
- function resolveUrl ( base , href ) {
1132
- if ( ! baseUrls [ ' ' + base ] ) {
1133
- // we can ignore everything in base after the last slash of its path component,
1134
- // but we might need to add _that_
1135
- // https://tools.ietf.org/html/rfc3986#section-3
1136
- if ( / ^ [ ^ : ] + : \/ * [ ^ / ] * $ / . test ( base ) ) {
1137
- baseUrls [ ' ' + base ] = base + '/' ;
1138
- } else {
1139
- baseUrls [ ' ' + base ] = base . replace ( / [ ^ / ] * $ / , '' ) ;
1140
- }
1141
- }
1142
- base = baseUrls [ ' ' + base ] ;
1143
-
1144
- if ( href . slice ( 0 , 2 ) === '//' ) {
1145
- return base . replace ( / : [ \s \S ] * / , ':' ) + href ;
1146
- } else if ( href . charAt ( 0 ) === '/' ) {
1147
- return base . replace ( / ( : \/ * [ ^ / ] * ) [ \s \S ] * / , '$1' ) + href ;
1148
- } else {
1149
- return base + href ;
1150
- }
1151
- }
1152
- var baseUrls = { } ;
1153
- var originIndependentUrl = / ^ $ | ^ [ a - z ] [ a - z 0 - 9 + . - ] * : | ^ [ ? # ] / i;
1154
-
1155
1122
function noop ( ) { }
1156
1123
noop . exec = noop ;
1157
1124
@@ -1253,7 +1220,7 @@ function marked(src, opt, callback) {
1253
1220
} catch ( e ) {
1254
1221
e . message += '\nPlease report this to https://github.com/chjj/marked.' ;
1255
1222
if ( ( opt || marked . defaults ) . silent ) {
1256
- return '<p>An error occurred :</p><pre>'
1223
+ return '<p>An error occured :</p><pre>'
1257
1224
+ escape ( e . message + '' , true )
1258
1225
+ '</pre>' ;
1259
1226
}
@@ -1286,8 +1253,7 @@ marked.defaults = {
1286
1253
smartypants : false ,
1287
1254
headerPrefix : '' ,
1288
1255
renderer : new Renderer ,
1289
- xhtml : false ,
1290
- baseUrl : null
1256
+ xhtml : false
1291
1257
} ;
1292
1258
1293
1259
/**
0 commit comments