wooorm / markdown-rs

CommonMark compliant markdown parser in Rust with ASTs and extensions
https://docs.rs/markdown/1.0.0-alpha.18/markdown/
MIT License
836 stars 41 forks source link

Add more options to ParseOptions #65

Closed kamiyaa closed 1 year ago

kamiyaa commented 1 year ago

I think it would be nice to be able to configure ParseOptions to enable/disable features.

ie. Some features I would want in the future is strikethrough support, table support, etc.

wooorm commented 1 year ago

That's supported. In parseOptions.constructs!

kamiyaa commented 1 year ago

Oh I see, thanks!