-
Notifications
You must be signed in to change notification settings - Fork 319
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
RFC: Website for Expanded Documentation #1499
Comments
For an example of what this would look like, see this partial implementation on my fork. |
Excellent! Thank you for the write-up. I have some questions:
|
what's up! as a newbie(a new contributor) to ndarray, it was really helpful for me to read materials like this PR: #1440 especially this kind of figure to understand structures/desgins and when/why to use each type.
to me, this is about Of course, as a new contributor, it's natural to spend some time reading through various issues in the repository to get familiar with the project. However, if this Explanation section exists somewhere in the documentation, it could save a lot of that time. If possible, I think this Explanation section should include the following:
Introducing MkDocs for this purpose could create great synergy. Because to this end, we don't need to make live sync between codes and docs. If you're planning to use GitHub Pages, referring to the FAISS documentation might also be a good idea. |
Summary
This RFC proposes the creation of a documentation website for
ndarray
using Material for MkDocs and an expansion of our documentation to include Explainers, Tutorials, and How-Tos. The website would be hosted via GitHub Pages. Code examples used in the documentation would be written in asnippets
sub-crate and then automatically included in the docs, allowing us to test and prevent code-doc divergence or bit-rot. API documentation would always remain on docs.rs, although future website versions may also include API docs on the website for easier cross-referencing.cc: @bluss @jturner314 @nilgoyette
Motivation
Now that #879 is resolved and the new array reference type is in, users will need to (re)learn how to write functions for
ndarray
. We could add an additional section to theArrayBase
documentation and call it a day. However, I think the library has outgrown our current documentation strategy, with the reference type being the canary in the coal mine.Our current documentation strategy has limitations:
Lastly, a personal anecdote: I came to
ndarray
by way of trying to write Python NumPy acceleration libraries in Rust. I had to abandon the project for several reasons, but partially because I couldn't find the right library for it:nalgebra
had fantastic documentation, a clean API, and it was blazing fast, but I needed stacks of covariance matrices, i.e., Nx3x3, and didn't want to useVec<Matrix3>
. It was clear thatndarray
was the better pairing to NumPy, but I found the documentation really difficult to find and parse effectively. Like my work on the array reference type, this RFC is partially an attempt to provide my former self with the tools he would have needed to make the project a success.Proposed Documentation Strategy
What to Document
Inspired by the Diátaxis framework, the website will provide three of Diátaxis's four kinds of documentation (the fourth, "Reference", is already covered by our docs.rs API documentation).
Tutorials
Guided introductions for new users. For example: step-by-step walkthroughs, intermediate usage patterns, and introductions to new concepts.
How-To Guides
Practical solutions to specific problems. For example: performance optimization techniques, common tasks such as iteration, and solving specific challenges that users may run into.
Explanations
Conceptual and architectural insights. For example: deep dives into the library's types, the rationale behind panics, and other design choices.
Technical Implementation
I'd like to propose using Material for MkDocs. This approach offers several key advantages:
In order to prevent bit-rot and code-docs drift, I'd also propose we create a
snippets
sub-crate that would host every snippet used in the documentation website. Material for MkDocs has a powerful and simple capability to paste in content from another file. This way, these snippets could have a single source of truth and be tested by our CI/CD.Versioning
We can also employ mike for versioning our docs right along with our library.
Non-Goals
This documentation website would not:
The first two are huge undertakings for which excellent resources already exist. There is no need to reinvent the wheel. And API docs still belong on docs.rs, which remains an excellent tool for that use.
Challenges and Drawbacks
Here are the potential challenges and drawbacks of this approach:
Rationale and Alternatives
Why This Approach?
Considered Alternatives
Just docs.rs
Keeping all documentation as comments forces maintainers to make a choice. Option one is to tie a given piece of documentation to a particular type, function, or module; but there's so much that deserves documenting that is not about one particular piece of code, and this approach seriously hurts discoverability.
Option two is to create an empty module that just consists of doc comments; but at that point, you're essentially creating a markdown website! But without any of the niceties of actually writing markdown or actually using a website. It seems to me to be the worst of both worlds.
GitHub Wiki
One approach that eliminates the additional infrastructure is using a GitHub wiki. But I think that the user experience will be noticeably worse, at a trade-off of a small amount of maintenance. This is mainly because its navigation capabilities aren't quite as good, nor are its various features like the
snippets
sub-crate idea.Future Possibilities
When rust-lang/rust#76578 lands, we would be able to incorporate the API documentation directly into the external website. This could really open up the possibility for better cross-referencing.
Summary
As I stated at the beginning, I think users could really benefit from a centralized, intentional, and ergonomic documentation experience beyond what we have right now. I think this is a reasonable solution that adds minimal overhead while delivering a lot of value. I look forward to discussing it with our community. Thank you!
The text was updated successfully, but these errors were encountered: