-
-
Notifications
You must be signed in to change notification settings - Fork 27
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
1.0 Roadmap #27
Comments
Is some if-like structure planned? Also will there be an easy replacement for #[md] available? I like this feature quite a bit, so I am wondering if I were to depend on it for now. I am currently trying to reduce dependencies and code in my fork of mdblog and #[md] seems like a godsend. |
Sections serve as if conditions in Mustache: #[derive(Content)]
struct Foo {
name: &'static str,
maybe_bar: Option<Bar>,
}
#[derive(Content)]
struct Bar {
count: usize,
} Will work with As for |
I think there could be |
I feel like we are in a pretty good place right now with the feature set and the API surface. Checklist for 1.0 release:
#[md]
and markdown support. Figure out more generic way to support writing to encoders without intermediate buffers from iterators likepulldown_cmark
's one.The text was updated successfully, but these errors were encountered: