Skip to content

Commit

Permalink
Merge pull request #874 from duskmoon314/math_doc
Browse files Browse the repository at this point in the history
Fix doc of Options::ENABLE_MATH
  • Loading branch information
Martin1887 committed Mar 27, 2024
2 parents 23c3266 + 68e6467 commit f0ad25e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pulldown-cmark/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -467,8 +467,8 @@ bitflags::bitflags! {
/// literal text [^4]. In old syntax, it creates a dangling link.
/// ```
const ENABLE_OLD_FOOTNOTES = (1 << 9) | (1 << 2);
/// With this feature enabled, `Tag::Math` events are emitted that
/// conventionally contain TeX formulas.
/// With this feature enabled, two events `Event::InlineMath` and `Event::DisplayMath`
/// are emitted that conventionally contain TeX formulas.
const ENABLE_MATH = 1 << 10;
}
}
Expand Down

0 comments on commit f0ad25e

Please sign in to comment.