-
Notifications
You must be signed in to change notification settings - Fork 2
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
Support syn::File case for module level document #3
Conversation
There are two problems:
|
Seems like it could perhaps work now? This seems to actually work on nightly with your branch: #![feature(custom_inner_attributes)]
#![feature(prelude_import)]
#![cfg_attr(doc, katexit::katexit)]
//! Test $x = 2$.
//!
//! <div>$$
//! \iiint_{\Omega} f(x) \, \mathrm{d}x
//! $$</div>
fn main() {} Which is exciting, to say the least :-) I'm not sure about the implications of this - how "stable" is this? I'm not sure if we can deploy a solution like this to |
I confirm this works with |
Resolve #1