-
-
Notifications
You must be signed in to change notification settings - Fork 55
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Compile mdast to html #101
Comments
Duplicate of #32 |
@ChristianMurphy I agree that the end result could be about the same than with a plugin architecture. That being said, somehow allowing to use Would you consider making more of the internals public in the crate? |
There will not be a mdast -> html transform. Currently, this project is ± at a level of trying to figure out how people want to use it, before committing to particular APIs. All of these steps are available in the JavaScript world. As this is Rust, the Rust part might affect it. |
Right, I went through the code too quickly. Now I understand why it's a duplicate of #32. Thanks a lot 👍 |
I'd like to manipulate the parsed AST before it goes through compilation.
I can get the AST using
to_mdast
, however I can't then compile it to HTML asto_html::compile
is private in the crate.The text was updated successfully, but these errors were encountered: