Skip to content

Commit

Permalink
Merge pull request #734 from notriddle/math
Browse files Browse the repository at this point in the history
Yet another Math implementation
  • Loading branch information
Martin1887 committed Mar 23, 2024
2 parents 86c5ff3 + 1825373 commit a51a362
Show file tree
Hide file tree
Showing 10 changed files with 2,310 additions and 57 deletions.
2 changes: 2 additions & 0 deletions pulldown-cmark/examples/parser-map-event-print.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ fn main() {
Event::InlineHtml(s) => println!("InlineHtml: {:?}", s),
Event::Text(s) => println!("Text: {:?}", s),
Event::Code(s) => println!("Code: {:?}", s),
Event::DisplayMath(s) => println!("DisplayMath: {:?}", s),
Event::InlineMath(s) => println!("Math: {:?}", s),
Event::FootnoteReference(s) => println!("FootnoteReference: {:?}", s),
Event::TaskListMarker(b) => println!("TaskListMarker: {:?}", b),
Event::SoftBreak => println!("SoftBreak"),
Expand Down

0 comments on commit a51a362

Please sign in to comment.