Commit 634d93f 1 parent ac4abda commit 634d93f Copy full SHA for 634d93f
File tree 1 file changed +3
-6
lines changed
1 file changed +3
-6
lines changed Original file line number Diff line number Diff line change @@ -110,7 +110,7 @@ fn paragraph_parser_opener_candidates_and_links() -> impl Parser<
110
110
> {
111
111
let token = any ( ) . map ( ParagraphSegment :: Token ) ;
112
112
let modifier = select ! {
113
- ParagraphSegmentToken :: Special ( c @ ( '*' | '/' | '_' | '-' ) ) => c,
113
+ ParagraphSegmentToken :: Special ( c @ ( '*' | '/' | '_' | '-' | '!' | '^' | ',' ) ) => c,
114
114
} ;
115
115
116
116
let whitespace_or_special = select ! {
@@ -285,7 +285,7 @@ fn paragraph_parser_closer_candidates(
285
285
286
286
let token = any ( ) ;
287
287
let modifier = select ! {
288
- Token ( ParagraphSegmentToken :: Special ( c @ ( '*' | '/' | '_' | '-' ) ) ) => c,
288
+ Token ( ParagraphSegmentToken :: Special ( c @ ( '*' | '/' | '_' | '-' | '!' | '^' | ',' ) ) ) => c,
289
289
} ;
290
290
291
291
let whitespace_or_special = select ! {
@@ -579,10 +579,7 @@ fn detached_modifier_extensions() -> impl Parser<
579
579
. or_not ( )
580
580
. map ( |tokens| {
581
581
if let Some ( tokens) = tokens {
582
- tokens
583
- . into_iter ( )
584
- . map_into :: < String > ( )
585
- . collect ( )
582
+ tokens. into_iter ( ) . map_into :: < String > ( ) . collect ( )
586
583
} else {
587
584
String :: from ( "" )
588
585
}
You can’t perform that action at this time.
0 commit comments