(&mut self, alignments: Vec<Alignment>)
| 556 | } |
| 557 | |
| 558 | fn start_table(&mut self, alignments: Vec<Alignment>) { |
| 559 | self.alignments = alignments; |
| 560 | self.current_row = Vec::new(); |
| 561 | self.rows = Vec::new(); |
| 562 | self.is_header = false; |
| 563 | self.in_table = true; |
| 564 | } |
| 565 | |
| 566 | fn start_row(&mut self) { |
| 567 | self.current_row = Vec::new(); |