Skip to content

Commit 39e404d

Browse files
avoid new warning in 5.43.2
"Possible attempt to escape whitespace in qw() list at .../Markdent/Parser/SpanParser.pm line 310."
1 parent d032806 commit 39e404d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/Markdent/Parser/SpanParser.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,7 @@ sub _build_emphasis_start_delimiter_re {
307307
}
308308

309309
sub _build_escapable_chars {
310-
return [ qw( \ ` * _ { } [ ] ( ) + - . ! < > ~ ), '#' ];
310+
return [ qw( ` * _ { } [ ] ( ) + - . ! < > ~ ), '\\', '#' ];
311311
}
312312

313313
sub _build_escape_re {

0 commit comments

Comments
 (0)