File tree 3 files changed +32
-2
lines changed
3 files changed +32
-2
lines changed Original file line number Diff line number Diff line change 31
31
task ,
32
32
tasks ,
33
33
unorderedList ,
34
+ flatten ,
34
35
} = require (' ./utils' );
35
36
}}
36
37
@@ -227,10 +228,12 @@ InlineItem = Whitespace
227
228
*
228
229
*/
229
230
References
230
- = " [" title: LinkTitle* " ](" href: LinkRef " )" { return title .length ? link (href, reducePlainTexts (title)) : link (href); }
231
+ = " [" title: LinkTitle* " ](" href: LinkRef " )" { return title .length ? link (href, reducePlainTexts (flatten ( title) )) : link (href); }
231
232
/ " <" href: LinkRef " |" title: LinkTitle2 " >" { return link (href, [plain (title)]); }
232
233
233
- LinkTitle = (Whitespace / Emphasis) / anyTitle: $ (! (" ](" .) .) { return plain (anyTitle) }
234
+ LinkTitle = (Whitespace / Emphasis) / balanced / anyTitle: $[^ \[\]] { return plain (anyTitle) }
235
+
236
+ balanced = " [" t: LinkTitle* " ]" { return reducePlainTexts ([plain (" [" ), ... (t || []), plain (" ]" )]) }
234
237
235
238
LinkTitle2 = $ ([\x20- \x3B\x3D\x3F- \x60\x61- \x7B\x7D- \xFF] / NonASCII)+
236
239
Original file line number Diff line number Diff line change @@ -194,6 +194,12 @@ const joinEmoji = (
194
194
return current ;
195
195
} ;
196
196
197
+ export const flatten = ( values : Paragraph [ 'value' ] ) : Paragraph [ 'value' ] =>
198
+ values . reduce (
199
+ ( acc , v ) => [ ...acc , ...( Array . isArray ( v ) ? v : [ v ] ) ] ,
200
+ [ ] as Paragraph [ 'value' ]
201
+ ) ;
202
+
197
203
export const reducePlainTexts = (
198
204
values : Paragraph [ 'value' ]
199
205
) : Paragraph [ 'value' ] =>
Original file line number Diff line number Diff line change @@ -560,6 +560,27 @@ Text after line break`,
560
560
] ) ,
561
561
] ,
562
562
] ,
563
+ [
564
+ '[Jira [Task _emph_ foo] parentheses not working](rocket.chat)' ,
565
+ [
566
+ paragraph ( [
567
+ link ( 'rocket.chat' , [
568
+ plain ( 'Jira [Task ' ) ,
569
+ italic ( [ plain ( 'emph' ) ] ) ,
570
+ plain ( ' foo] parentheses not working' ) ,
571
+ ] ) ,
572
+ ] ) ,
573
+ ] ,
574
+ ] ,
575
+ [
576
+ '[Title 1] bla bla [Title 2](https://foo.com/title2)' ,
577
+ [
578
+ paragraph ( [
579
+ plain ( '[Title 1] bla bla ' ) ,
580
+ link ( 'https://foo.com/title2' , [ plain ( 'Title 2' ) ] ) ,
581
+ ] ) ,
582
+ ] ,
583
+ ] ,
563
584
] ) ( 'parses %p' , ( input , output ) => {
564
585
expect ( parse ( input ) ) . toMatchObject ( output ) ;
565
586
} ) ;
You can’t perform that action at this time.
0 commit comments