File tree 3 files changed +6
-6
lines changed
3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -1216,11 +1216,11 @@ var InlineLexer_1 = class InlineLexer {
1216
1216
}
1217
1217
1218
1218
src = src . substring ( cap [ 0 ] . length ) ;
1219
- out += this . options . sanitize
1220
- ? this . options . sanitizer
1219
+ out += this . renderer . html ( this . options . sanitize
1220
+ ? ( this . options . sanitizer
1221
1221
? this . options . sanitizer ( cap [ 0 ] )
1222
- : escape$3 ( cap [ 0 ] )
1223
- : cap [ 0 ] ;
1222
+ : escape$3 ( cap [ 0 ] ) )
1223
+ : cap [ 0 ] ) ;
1224
1224
continue ;
1225
1225
}
1226
1226
Original file line number Diff line number Diff line change 1139
1139
}
1140
1140
1141
1141
src = src . substring ( cap [ 0 ] . length ) ;
1142
- out += this . options . sanitize ? this . options . sanitizer ? this . options . sanitizer ( cap [ 0 ] ) : escape$3 ( cap [ 0 ] ) : cap [ 0 ] ;
1142
+ out += this . renderer . html ( this . options . sanitize ? this . options . sanitizer ? this . options . sanitizer ( cap [ 0 ] ) : escape$3 ( cap [ 0 ] ) : cap [ 0 ] ) ;
1143
1143
continue ;
1144
1144
} // link
1145
1145
You can’t perform that action at this time.
0 commit comments