-
Notifications
You must be signed in to change notification settings - Fork 11
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
Add a new Render to working with OffsetIter? #71
Comments
I am working on a djot formatter which need more information than event provided, |
Another alternative might be to add the missing information to the events, it may be useful for other use cases as well. And it would be useful to be able to render to djot without necessarily having the offset information. A few things that are missing:
What else? It is also not necessary to have a render trait for the formatting renderer, a crate can still provide a standalone function if offsets are required. |
A few more:
Sure but it would be nice that jotdown have such a trait. |
Currently, we have jotdown::Render with a
push
method take Iterator<Item = Event> as input.Can we have jotdown::OffsetRender with a
push
method with OffsetIter?The text was updated successfully, but these errors were encountered: