-
Notifications
You must be signed in to change notification settings - Fork 13.2k
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
Move markdown library out of librustdoc into it's own libmarkdown #12346
Comments
I think it is a good idea to pull it out of |
As the 1.0 release is focused on the API stability of the standard library, I don't think that this is going to happen in the mainline distribution. The shipped version of Times have changed since this bug was created, however, and we primarily now have Cargo. I think for now we'd have a difficult time refactoring We can certainly investigate bringing in an excellent implementation for use by rustdoc as well! |
… r=Veykril fix: special case base url of `BuiltinType` to core fix rust-lang#12250
bump itertools to 0.12 Bumps itertools to newer 0.12 version, https://github.com/rust-itertools/itertools/blob/v0.12.1/CHANGELOG.md changelog: none
Rust ships with a Markdown implementation. By moving it into it's own library, it's less hidden to the programmer and other people can depend on it for their own projects.
I know that I can use it right now via
rustdoc::html::markdown::Markdown
, but this also means that I depend on the whole rustdoc library, not just markdown.I think if we ship with markdown we should make it available as a first class library for everyone to use and depend on.
The text was updated successfully, but these errors were encountered: