-
Notifications
You must be signed in to change notification settings - Fork 241
/
parse.rs
1861 lines (1679 loc) · 67.3 KB
/
parse.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// Copyright 2017 Google Inc. All rights reserved.
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
//! Tree-based two pass parser.
use std::cmp::{max, min};
use std::collections::{HashMap, VecDeque};
use std::iter::FusedIterator;
use std::ops::{Index, Range};
use unicase::UniCase;
use crate::firstpass::run_first_pass;
use crate::linklabel::{scan_link_label_rest, LinkLabel, ReferenceLabel};
use crate::scanners::*;
use crate::strings::CowStr;
use crate::tree::{Tree, TreeIndex};
use crate::{Alignment, CodeBlockKind, Event, HeadingLevel, LinkType, Options, Tag};
// Allowing arbitrary depth nested parentheses inside link destinations
// can create denial of service vulnerabilities if we're not careful.
// The simplest countermeasure is to limit their depth, which is
// explicitly allowed by the spec as long as the limit is at least 3:
// https://spec.commonmark.org/0.29/#link-destination
const LINK_MAX_NESTED_PARENS: usize = 5;
#[derive(Debug, Default, Clone, Copy)]
pub(crate) struct Item {
pub start: usize,
pub end: usize,
pub body: ItemBody,
}
#[derive(Debug, PartialEq, Clone, Copy)]
pub(crate) enum ItemBody {
Paragraph,
Text,
SoftBreak,
HardBreak,
// These are possible inline items, need to be resolved in second pass.
// repeats, can_open, can_close
MaybeEmphasis(usize, bool, bool),
// quote byte, can_open, can_close
MaybeSmartQuote(u8, bool, bool),
MaybeCode(usize, bool), // number of backticks, preceeded by backslash
MaybeHtml,
MaybeLinkOpen,
// bool indicates whether or not the preceeding section could be a reference
MaybeLinkClose(bool),
MaybeImage,
// These are inline items after resolution.
Emphasis,
Strong,
Strikethrough,
Code(CowIndex),
Link(LinkIndex),
Image(LinkIndex),
FootnoteReference(CowIndex),
TaskListMarker(bool), // true for checked
Rule,
Heading(HeadingLevel), // heading level
FencedCodeBlock(CowIndex),
IndentCodeBlock,
Html,
OwnedHtml(CowIndex),
BlockQuote,
List(bool, u8, u64), // is_tight, list character, list start index
ListItem(usize), // indent level
SynthesizeText(CowIndex),
SynthesizeChar(char),
FootnoteDefinition(CowIndex),
// Tables
Table(AlignmentIndex),
TableHead,
TableRow,
TableCell,
// Dummy node at the top of the tree - should not be used otherwise!
Root,
}
impl<'a> ItemBody {
fn is_inline(&self) -> bool {
matches!(
*self,
ItemBody::MaybeEmphasis(..)
| ItemBody::MaybeSmartQuote(..)
| ItemBody::MaybeHtml
| ItemBody::MaybeCode(..)
| ItemBody::MaybeLinkOpen
| ItemBody::MaybeLinkClose(..)
| ItemBody::MaybeImage
)
}
}
impl<'a> Default for ItemBody {
fn default() -> Self {
ItemBody::Root
}
}
pub struct BrokenLink<'a> {
pub span: std::ops::Range<usize>,
pub link_type: LinkType,
pub reference: CowStr<'a>,
}
/// Markdown event iterator.
pub struct Parser<'input, 'callback> {
text: &'input str,
options: Options,
tree: Tree<Item>,
allocs: Allocations<'input>,
broken_link_callback: BrokenLinkCallback<'input, 'callback>,
html_scan_guard: HtmlScanGuard,
// used by inline passes. store them here for reuse
inline_stack: InlineStack,
link_stack: LinkStack,
}
impl<'input, 'callback> Parser<'input, 'callback> {
/// Creates a new event iterator for a markdown string without any options enabled.
pub fn new(text: &'input str) -> Self {
Parser::new_ext(text, Options::empty())
}
/// Creates a new event iterator for a markdown string with given options.
pub fn new_ext(text: &'input str, options: Options) -> Self {
Parser::new_with_broken_link_callback(text, options, None)
}
/// In case the parser encounters any potential links that have a broken
/// reference (e.g `[foo]` when there is no `[foo]: ` entry at the bottom)
/// the provided callback will be called with the reference name,
/// and the returned pair will be used as the link name and title if it is not
/// `None`.
pub fn new_with_broken_link_callback(
text: &'input str,
options: Options,
broken_link_callback: BrokenLinkCallback<'input, 'callback>,
) -> Self {
let (mut tree, allocs) = run_first_pass(text, options);
tree.reset();
let inline_stack = Default::default();
let link_stack = Default::default();
let html_scan_guard = Default::default();
Parser {
text,
options,
tree,
allocs,
broken_link_callback,
inline_stack,
link_stack,
html_scan_guard,
}
}
/// Returns a reference to the internal `RefDefs` object, which provides access
/// to the internal map of reference definitions.
pub fn reference_definitions(&self) -> &RefDefs {
&self.allocs.refdefs
}
/// Handle inline markup.
///
/// When the parser encounters any item indicating potential inline markup, all
/// inline markup passes are run on the remainder of the chain.
///
/// Note: there's some potential for optimization here, but that's future work.
fn handle_inline(&mut self) {
self.handle_inline_pass1();
self.handle_emphasis();
}
/// Handle inline HTML, code spans, and links.
///
/// This function handles both inline HTML and code spans, because they have
/// the same precedence. It also handles links, even though they have lower
/// precedence, because the URL of links must not be processed.
fn handle_inline_pass1(&mut self) {
let mut code_delims = CodeDelims::new();
let mut cur = self.tree.cur();
let mut prev = None;
let block_end = self.tree[self.tree.peek_up().unwrap()].item.end;
let block_text = &self.text[..block_end];
while let Some(mut cur_ix) = cur {
match self.tree[cur_ix].item.body {
ItemBody::MaybeHtml => {
let next = self.tree[cur_ix].next;
let autolink = if let Some(next_ix) = next {
scan_autolink(block_text, self.tree[next_ix].item.start)
} else {
None
};
if let Some((ix, uri, link_type)) = autolink {
let node = scan_nodes_to_ix(&self.tree, next, ix);
let text_node = self.tree.create_node(Item {
start: self.tree[cur_ix].item.start + 1,
end: ix - 1,
body: ItemBody::Text,
});
let link_ix = self.allocs.allocate_link(link_type, uri, "".into());
self.tree[cur_ix].item.body = ItemBody::Link(link_ix);
self.tree[cur_ix].item.end = ix;
self.tree[cur_ix].next = node;
self.tree[cur_ix].child = Some(text_node);
prev = cur;
cur = node;
if let Some(node_ix) = cur {
self.tree[node_ix].item.start = max(self.tree[node_ix].item.start, ix);
}
continue;
} else {
let inline_html = next.and_then(|next_ix| {
self.scan_inline_html(
block_text.as_bytes(),
self.tree[next_ix].item.start,
)
});
if let Some((span, ix)) = inline_html {
let node = scan_nodes_to_ix(&self.tree, next, ix);
self.tree[cur_ix].item.body = if !span.is_empty() {
let converted_string =
String::from_utf8(span).expect("invalid utf8");
ItemBody::OwnedHtml(
self.allocs.allocate_cow(converted_string.into()),
)
} else {
ItemBody::Html
};
self.tree[cur_ix].item.end = ix;
self.tree[cur_ix].next = node;
prev = cur;
cur = node;
if let Some(node_ix) = cur {
self.tree[node_ix].item.start =
max(self.tree[node_ix].item.start, ix);
}
continue;
}
}
self.tree[cur_ix].item.body = ItemBody::Text;
}
ItemBody::MaybeCode(mut search_count, preceded_by_backslash) => {
if preceded_by_backslash {
search_count -= 1;
if search_count == 0 {
self.tree[cur_ix].item.body = ItemBody::Text;
prev = cur;
cur = self.tree[cur_ix].next;
continue;
}
}
if code_delims.is_populated() {
// we have previously scanned all codeblock delimiters,
// so we can reuse that work
if let Some(scan_ix) = code_delims.find(cur_ix, search_count) {
self.make_code_span(cur_ix, scan_ix, preceded_by_backslash);
} else {
self.tree[cur_ix].item.body = ItemBody::Text;
}
} else {
// we haven't previously scanned all codeblock delimiters,
// so walk the AST
let mut scan = if search_count > 0 {
self.tree[cur_ix].next
} else {
None
};
while let Some(scan_ix) = scan {
if let ItemBody::MaybeCode(delim_count, _) =
self.tree[scan_ix].item.body
{
if search_count == delim_count {
self.make_code_span(cur_ix, scan_ix, preceded_by_backslash);
code_delims.clear();
break;
} else {
code_delims.insert(delim_count, scan_ix);
}
}
scan = self.tree[scan_ix].next;
}
if scan == None {
self.tree[cur_ix].item.body = ItemBody::Text;
}
}
}
ItemBody::MaybeLinkOpen => {
self.tree[cur_ix].item.body = ItemBody::Text;
self.link_stack.push(LinkStackEl {
node: cur_ix,
ty: LinkStackTy::Link,
});
}
ItemBody::MaybeImage => {
self.tree[cur_ix].item.body = ItemBody::Text;
self.link_stack.push(LinkStackEl {
node: cur_ix,
ty: LinkStackTy::Image,
});
}
ItemBody::MaybeLinkClose(could_be_ref) => {
self.tree[cur_ix].item.body = ItemBody::Text;
if let Some(tos) = self.link_stack.pop() {
if tos.ty == LinkStackTy::Disabled {
continue;
}
let next = self.tree[cur_ix].next;
if let Some((next_ix, url, title)) =
self.scan_inline_link(block_text, self.tree[cur_ix].item.end, next)
{
let next_node = scan_nodes_to_ix(&self.tree, next, next_ix);
if let Some(prev_ix) = prev {
self.tree[prev_ix].next = None;
}
cur = Some(tos.node);
cur_ix = tos.node;
let link_ix = self.allocs.allocate_link(LinkType::Inline, url, title);
self.tree[cur_ix].item.body = if tos.ty == LinkStackTy::Image {
ItemBody::Image(link_ix)
} else {
ItemBody::Link(link_ix)
};
self.tree[cur_ix].child = self.tree[cur_ix].next;
self.tree[cur_ix].next = next_node;
self.tree[cur_ix].item.end = next_ix;
if let Some(next_node_ix) = next_node {
self.tree[next_node_ix].item.start =
max(self.tree[next_node_ix].item.start, next_ix);
}
if tos.ty == LinkStackTy::Link {
self.link_stack.disable_all_links();
}
} else {
// ok, so its not an inline link. maybe it is a reference
// to a defined link?
let scan_result = scan_reference(
&self.tree,
block_text,
next,
self.options.contains(Options::ENABLE_FOOTNOTES),
);
let (node_after_link, link_type) = match scan_result {
// [label][reference]
RefScan::LinkLabel(_, end_ix) => {
// Toggle reference viability of the last closing bracket,
// so that we can skip it on future iterations in case
// it fails in this one. In particular, we won't call
// the broken link callback twice on one reference.
let reference_close_node =
scan_nodes_to_ix(&self.tree, next, end_ix - 1).unwrap();
self.tree[reference_close_node].item.body =
ItemBody::MaybeLinkClose(false);
let next_node = self.tree[reference_close_node].next;
(next_node, LinkType::Reference)
}
// [reference][]
RefScan::Collapsed(next_node) => {
// This reference has already been tried, and it's not
// valid. Skip it.
if !could_be_ref {
continue;
}
(next_node, LinkType::Collapsed)
}
// [shortcut]
//
// [shortcut]: /blah
RefScan::Failed => {
if !could_be_ref {
continue;
}
(next, LinkType::Shortcut)
}
};
// FIXME: references and labels are mixed in the naming of variables
// below. Disambiguate!
// (label, source_ix end)
let label: Option<(ReferenceLabel<'input>, usize)> = match scan_result {
RefScan::LinkLabel(l, end_ix) => {
Some((ReferenceLabel::Link(l), end_ix))
}
RefScan::Collapsed(..) | RefScan::Failed => {
// No label? maybe it is a shortcut reference
let label_start = self.tree[tos.node].item.end - 1;
scan_link_label(
&self.tree,
&self.text[label_start..self.tree[cur_ix].item.end],
self.options.contains(Options::ENABLE_FOOTNOTES),
)
.map(|(ix, label)| (label, label_start + ix))
}
};
// see if it's a footnote reference
if let Some((ReferenceLabel::Footnote(l), end)) = label {
self.tree[tos.node].next = node_after_link;
self.tree[tos.node].child = None;
self.tree[tos.node].item.body =
ItemBody::FootnoteReference(self.allocs.allocate_cow(l));
self.tree[tos.node].item.end = end;
prev = Some(tos.node);
cur = node_after_link;
self.link_stack.clear();
continue;
} else if let Some((ReferenceLabel::Link(link_label), end)) = label {
let type_url_title = self
.allocs
.refdefs
.get(link_label.as_ref())
.map(|matching_def| {
// found a matching definition!
let title = matching_def
.title
.as_ref()
.cloned()
.unwrap_or_else(|| "".into());
let url = matching_def.dest.clone();
(link_type, url, title)
})
.or_else(|| {
match self.broken_link_callback.as_mut() {
Some(callback) => {
// Construct a BrokenLink struct, which will be passed to the callback
let broken_link = BrokenLink {
span: (self.tree[tos.node].item.start)..end,
link_type,
reference: link_label,
};
callback(broken_link).map(|(url, title)| {
(link_type.to_unknown(), url, title)
})
}
None => None,
}
});
if let Some((def_link_type, url, title)) = type_url_title {
let link_ix =
self.allocs.allocate_link(def_link_type, url, title);
self.tree[tos.node].item.body = if tos.ty == LinkStackTy::Image
{
ItemBody::Image(link_ix)
} else {
ItemBody::Link(link_ix)
};
let label_node = self.tree[tos.node].next;
// lets do some tree surgery to add the link to the tree
// 1st: skip the label node and close node
self.tree[tos.node].next = node_after_link;
// then, if it exists, add the label node as a child to the link node
if label_node != cur {
self.tree[tos.node].child = label_node;
// finally: disconnect list of children
if let Some(prev_ix) = prev {
self.tree[prev_ix].next = None;
}
}
self.tree[tos.node].item.end = end;
// set up cur so next node will be node_after_link
cur = Some(tos.node);
cur_ix = tos.node;
if tos.ty == LinkStackTy::Link {
self.link_stack.disable_all_links();
}
}
}
}
}
}
_ => (),
}
prev = cur;
cur = self.tree[cur_ix].next;
}
self.link_stack.clear();
}
fn handle_emphasis(&mut self) {
let mut prev = None;
let mut prev_ix: TreeIndex;
let mut cur = self.tree.cur();
let mut single_quote_open: Option<TreeIndex> = None;
let mut double_quote_open: bool = false;
while let Some(mut cur_ix) = cur {
match self.tree[cur_ix].item.body {
ItemBody::MaybeEmphasis(mut count, can_open, can_close) => {
let c = self.text.as_bytes()[self.tree[cur_ix].item.start];
let both = can_open && can_close;
if can_close {
while let Some(el) =
self.inline_stack.find_match(&mut self.tree, c, count, both)
{
// have a match!
if let Some(prev_ix) = prev {
self.tree[prev_ix].next = None;
}
let match_count = min(count, el.count);
// start, end are tree node indices
let mut end = cur_ix - 1;
let mut start = el.start + el.count;
// work from the inside out
while start > el.start + el.count - match_count {
let (inc, ty) = if c == b'~' {
(2, ItemBody::Strikethrough)
} else if start > el.start + el.count - match_count + 1 {
(2, ItemBody::Strong)
} else {
(1, ItemBody::Emphasis)
};
let root = start - inc;
end = end + inc;
self.tree[root].item.body = ty;
self.tree[root].item.end = self.tree[end].item.end;
self.tree[root].child = Some(start);
self.tree[root].next = None;
start = root;
}
// set next for top most emph level
prev_ix = el.start + el.count - match_count;
prev = Some(prev_ix);
cur = self.tree[cur_ix + match_count - 1].next;
self.tree[prev_ix].next = cur;
if el.count > match_count {
self.inline_stack.push(InlineEl {
start: el.start,
count: el.count - match_count,
c: el.c,
both,
})
}
count -= match_count;
if count > 0 {
cur_ix = cur.unwrap();
} else {
break;
}
}
}
if count > 0 {
if can_open {
self.inline_stack.push(InlineEl {
start: cur_ix,
count,
c,
both,
});
} else {
for i in 0..count {
self.tree[cur_ix + i].item.body = ItemBody::Text;
}
}
prev_ix = cur_ix + count - 1;
prev = Some(prev_ix);
cur = self.tree[prev_ix].next;
}
}
ItemBody::MaybeSmartQuote(c, can_open, can_close) => {
self.tree[cur_ix].item.body = match c {
b'\'' => {
if let (Some(open_ix), true) = (single_quote_open, can_close) {
self.tree[open_ix].item.body = ItemBody::SynthesizeChar('‘');
single_quote_open = None;
} else if can_open {
single_quote_open = Some(cur_ix);
}
ItemBody::SynthesizeChar('’')
}
_ /* double quote */ => {
if can_close && double_quote_open {
double_quote_open = false;
ItemBody::SynthesizeChar('”')
} else {
if can_open && !double_quote_open {
double_quote_open = true;
}
ItemBody::SynthesizeChar('“')
}
}
};
prev = cur;
cur = self.tree[cur_ix].next;
}
_ => {
prev = cur;
cur = self.tree[cur_ix].next;
}
}
}
self.inline_stack.pop_all(&mut self.tree);
}
/// Returns next byte index, url and title.
fn scan_inline_link(
&self,
underlying: &'input str,
mut ix: usize,
node: Option<TreeIndex>,
) -> Option<(usize, CowStr<'input>, CowStr<'input>)> {
if scan_ch(&underlying.as_bytes()[ix..], b'(') == 0 {
return None;
}
ix += 1;
ix += scan_while(&underlying.as_bytes()[ix..], is_ascii_whitespace);
let (dest_length, dest) = scan_link_dest(underlying, ix, LINK_MAX_NESTED_PARENS)?;
let dest = unescape(dest);
ix += dest_length;
ix += scan_while(&underlying.as_bytes()[ix..], is_ascii_whitespace);
let title = if let Some((bytes_scanned, t)) = self.scan_link_title(underlying, ix, node) {
ix += bytes_scanned;
ix += scan_while(&underlying.as_bytes()[ix..], is_ascii_whitespace);
t
} else {
"".into()
};
if scan_ch(&underlying.as_bytes()[ix..], b')') == 0 {
return None;
}
ix += 1;
Some((ix, dest, title))
}
// returns (bytes scanned, title cow)
fn scan_link_title(
&self,
text: &'input str,
start_ix: usize,
node: Option<TreeIndex>,
) -> Option<(usize, CowStr<'input>)> {
let bytes = text.as_bytes();
let open = match bytes.get(start_ix) {
Some(b @ b'\'') | Some(b @ b'\"') | Some(b @ b'(') => *b,
_ => return None,
};
let close = if open == b'(' { b')' } else { open };
let mut title = String::new();
let mut mark = start_ix + 1;
let mut i = start_ix + 1;
while i < bytes.len() {
let c = bytes[i];
if c == close {
let cow = if mark == 1 {
(i - start_ix + 1, text[mark..i].into())
} else {
title.push_str(&text[mark..i]);
(i - start_ix + 1, title.into())
};
return Some(cow);
}
if c == open {
return None;
}
if c == b'\n' || c == b'\r' {
if let Some(node_ix) = scan_nodes_to_ix(&self.tree, node, i + 1) {
if self.tree[node_ix].item.start > i {
title.push_str(&text[mark..i]);
title.push('\n');
i = self.tree[node_ix].item.start;
mark = i;
continue;
}
}
}
if c == b'&' {
if let (n, Some(value)) = scan_entity(&bytes[i..]) {
title.push_str(&text[mark..i]);
title.push_str(&value);
i += n;
mark = i;
continue;
}
}
if c == b'\\' && i + 1 < bytes.len() && is_ascii_punctuation(bytes[i + 1]) {
title.push_str(&text[mark..i]);
i += 1;
mark = i;
}
i += 1;
}
None
}
/// Make a code span.
///
/// Both `open` and `close` are matching MaybeCode items.
fn make_code_span(&mut self, open: TreeIndex, close: TreeIndex, preceding_backslash: bool) {
let first_ix = open + 1;
let last_ix = close - 1;
let bytes = self.text.as_bytes();
let mut span_start = self.tree[open].item.end;
let mut span_end = self.tree[close].item.start;
let mut buf: Option<String> = None;
// detect all-space sequences, since they are kept as-is as of commonmark 0.29
if !bytes[span_start..span_end].iter().all(|&b| b == b' ') {
let opening = matches!(bytes[span_start], b' ' | b'\r' | b'\n');
let closing = matches!(bytes[span_end - 1], b' ' | b'\r' | b'\n');
let drop_enclosing_whitespace = opening && closing;
if drop_enclosing_whitespace {
span_start += 1;
if span_start < span_end {
span_end -= 1;
}
}
let mut ix = first_ix;
while ix < close {
if let ItemBody::HardBreak | ItemBody::SoftBreak = self.tree[ix].item.body {
if drop_enclosing_whitespace {
// check whether break should be ignored
if ix == first_ix {
ix = ix + 1;
span_start = min(span_end, self.tree[ix].item.start);
continue;
} else if ix == last_ix && last_ix > first_ix {
ix = ix + 1;
continue;
}
}
let end = bytes[self.tree[ix].item.start..]
.iter()
.position(|&b| b == b'\r' || b == b'\n')
.unwrap()
+ self.tree[ix].item.start;
if let Some(ref mut buf) = buf {
buf.push_str(&self.text[self.tree[ix].item.start..end]);
buf.push(' ');
} else {
let mut new_buf = String::with_capacity(span_end - span_start);
new_buf.push_str(&self.text[span_start..end]);
new_buf.push(' ');
buf = Some(new_buf);
}
} else if let Some(ref mut buf) = buf {
let end = if ix == last_ix {
span_end
} else {
self.tree[ix].item.end
};
buf.push_str(&self.text[self.tree[ix].item.start..end]);
}
ix = ix + 1;
}
}
let cow = if let Some(buf) = buf {
buf.into()
} else {
self.text[span_start..span_end].into()
};
if preceding_backslash {
self.tree[open].item.body = ItemBody::Text;
self.tree[open].item.end = self.tree[open].item.start + 1;
self.tree[open].next = Some(close);
self.tree[close].item.body = ItemBody::Code(self.allocs.allocate_cow(cow));
self.tree[close].item.start = self.tree[open].item.start + 1;
} else {
self.tree[open].item.body = ItemBody::Code(self.allocs.allocate_cow(cow));
self.tree[open].item.end = self.tree[close].item.end;
self.tree[open].next = self.tree[close].next;
}
}
/// On success, returns a buffer containing the inline html and byte offset.
/// When no bytes were skipped, the buffer will be empty and the html can be
/// represented as a subslice of the input string.
fn scan_inline_html(&mut self, bytes: &[u8], ix: usize) -> Option<(Vec<u8>, usize)> {
let c = *bytes.get(ix)?;
if c == b'!' {
Some((
vec![],
scan_inline_html_comment(bytes, ix + 1, &mut self.html_scan_guard)?,
))
} else if c == b'?' {
Some((
vec![],
scan_inline_html_processing(bytes, ix + 1, &mut self.html_scan_guard)?,
))
} else {
let (span, i) = scan_html_block_inner(
// Subtract 1 to include the < character
&bytes[(ix - 1)..],
Some(&|bytes| {
let mut line_start = LineStart::new(bytes);
let _ = scan_containers(&self.tree, &mut line_start);
line_start.bytes_scanned()
}),
)?;
Some((span, i + ix - 1))
}
}
/// Consumes the event iterator and produces an iterator that produces
/// `(Event, Range)` pairs, where the `Range` value maps to the corresponding
/// range in the markdown source.
pub fn into_offset_iter(self) -> OffsetIter<'input, 'callback> {
OffsetIter { inner: self }
}
}
/// Returns number of containers scanned.
pub(crate) fn scan_containers(tree: &Tree<Item>, line_start: &mut LineStart) -> usize {
let mut i = 0;
for &node_ix in tree.walk_spine() {
match tree[node_ix].item.body {
ItemBody::BlockQuote => {
// `scan_blockquote_marker` saves & restores internally
if !line_start.scan_blockquote_marker() {
break;
}
}
ItemBody::ListItem(indent) => {
let save = line_start.clone();
if !line_start.scan_space(indent) && !line_start.is_at_eol() {
*line_start = save;
break;
}
}
_ => (),
}
i += 1;
}
i
}
impl<'a> Tree<Item> {
pub(crate) fn append_text(&mut self, start: usize, end: usize) {
if end > start {
if let Some(ix) = self.cur() {
if ItemBody::Text == self[ix].item.body && self[ix].item.end == start {
self[ix].item.end = end;
return;
}
}
self.append(Item {
start,
end,
body: ItemBody::Text,
});
}
}
}
#[derive(Copy, Clone, Debug)]
struct InlineEl {
start: TreeIndex, // offset of tree node
count: usize,
c: u8, // b'*' or b'_'
both: bool, // can both open and close
}
#[derive(Debug, Clone, Default)]
struct InlineStack {
stack: Vec<InlineEl>,
// Lower bounds for matching indices in the stack. For example
// a strikethrough delimiter will never match with any element
// in the stack with index smaller than
// `lower_bounds[InlineStack::TILDES]`.
lower_bounds: [usize; 7],
}
impl InlineStack {
/// These are indices into the lower bounds array.
/// Not both refers to the property that the delimiter can not both
/// be opener as a closer.
const UNDERSCORE_NOT_BOTH: usize = 0;
const ASTERISK_NOT_BOTH: usize = 1;
const ASTERISK_BASE: usize = 2;
const TILDES: usize = 5;
const UNDERSCORE_BOTH: usize = 6;
fn pop_all(&mut self, tree: &mut Tree<Item>) {
for el in self.stack.drain(..) {
for i in 0..el.count {
tree[el.start + i].item.body = ItemBody::Text;
}
}
self.lower_bounds = [0; 7];
}
fn get_lowerbound(&self, c: u8, count: usize, both: bool) -> usize {
if c == b'_' {
if both {
self.lower_bounds[InlineStack::UNDERSCORE_BOTH]
} else {
self.lower_bounds[InlineStack::UNDERSCORE_NOT_BOTH]
}
} else if c == b'*' {
let mod3_lower = self.lower_bounds[InlineStack::ASTERISK_BASE + count % 3];
if both {
mod3_lower
} else {
min(
mod3_lower,
self.lower_bounds[InlineStack::ASTERISK_NOT_BOTH],
)
}
} else {
self.lower_bounds[InlineStack::TILDES]
}
}
fn set_lowerbound(&mut self, c: u8, count: usize, both: bool, new_bound: usize) {
if c == b'_' {
if both {
self.lower_bounds[InlineStack::UNDERSCORE_BOTH] = new_bound;
} else {
self.lower_bounds[InlineStack::UNDERSCORE_NOT_BOTH] = new_bound;
}
} else if c == b'*' {
self.lower_bounds[InlineStack::ASTERISK_BASE + count % 3] = new_bound;
if !both {
self.lower_bounds[InlineStack::ASTERISK_NOT_BOTH] = new_bound;
}
} else {
self.lower_bounds[InlineStack::TILDES] = new_bound;
}
}
fn find_match(
&mut self,
tree: &mut Tree<Item>,
c: u8,
count: usize,
both: bool,
) -> Option<InlineEl> {
let lowerbound = min(self.stack.len(), self.get_lowerbound(c, count, both));
let res = self.stack[lowerbound..]
.iter()
.cloned()
.enumerate()
.rfind(|(_, el)| {
el.c == c && (!both && !el.both || (count + el.count) % 3 != 0 || count % 3 == 0)
});
if let Some((matching_ix, matching_el)) = res {
let matching_ix = matching_ix + lowerbound;
for el in &self.stack[(matching_ix + 1)..] {
for i in 0..el.count {