lzanini / mdbook-katex

A preprocessor for mdBook, rendering LaTex equations to HTML at build time.
MIT License
195 stars 34 forks source link

Simpler scanner interface #89

Closed SichangHe closed 1 year ago

SichangHe commented 1 year ago

Implement Iterator for Scan so we simple use a for loop to iterate through the Events lazily.

We now only scan through raw_content once to produce the vector of Events instead of twice. Though, no significant performance difference.