6.4 KiB
Contributing
Welcome stranger!
If you have come here to learn how to contribute to mdBook, we have some tips for you!
First of all, don't hesitate to ask questions! Use the issue tracker, no question is too simple.
Issues to work on
Any issue is up for the grabbing, but if you are starting out, you might be interested in the E-Easy issues. Those are issues that are considered more straightforward for beginners to Rust or the codebase itself. These issues can be a good launching pad for more involved issues. Easy tasks for a first time contribution include documentation improvements, new tests, examples, updating dependencies, etc.
If you come from a web development background, you might be interested in issues related to web technologies tagged A-JavaScript, A-Style, A-HTML or A-Mobile.
When you decide you want to work on a specific issue, ping us on that issue so that we can assign it to you. Again, do not hesitate to ask questions. We will gladly mentor anyone that want to tackle an issue.
Issues on the issue tracker are categorized with the following labels:
- A-prefixed labels state which area of the project an issue relates to.
- E-prefixed labels show an estimate of the experience necessary to fix the issue.
- M-prefixed labels are meta-issues used for questions, discussions, or tracking issues
- S-prefixed labels show the status of the issue
- T-prefixed labels show the type of issue
Building mdBook
mdBook builds on stable Rust, if you want to build mdBook from source, here are the steps to follow:
-
Navigate to the directory of your choice
-
Clone this repository with git.
git clone https://github.com/rust-lang/mdBook.git
-
Navigate into the newly created
mdBook
directory -
Run
cargo build
The resulting binary can be found in mdBook/target/debug/
under the name mdbook
or mdbook.exe
.
Code Quality
We love code quality and Rust has some excellent tools to assist you with contributions.
Formatting Code with rustfmt
Before you make your Pull Request to the project, please run it through the rustfmt
utility.
This will ensure we have good quality source code that is better for us all to maintain.
rustfmt has a lot more information on the project. The quick guide is
- Install it
rustup component add rustfmt
- You can now run
rustfmt
on a single file simply by...
... or you can format the entire project withrustfmt src/path/to/your/file.rs
When run throughcargo fmt
cargo
it will format all bin and lib files in the current crate.
For more information, such as running it from your favourite editor, please see the rustfmt
project. rustfmt
Finding Issues with Clippy
Clippy is a code analyser/linter detecting mistakes, and therefore helps to improve your code.
Like formatting your code with rustfmt
, running clippy regularly and before your Pull Request will
help us maintain awesome code.
The best documentation can be found over at rust-clippy
- To install
rustup component add clippy
- Running clippy
cargo clippy
Clippy has an ever growing list of checks, that are managed in lint files.
Making a pull-request
When you feel comfortable that your changes could be integrated into mdBook, you can create a pull-request on GitHub. One of the core maintainers will then approve the changes or request some changes before it gets merged.
If you want to make your pull-request even better, you might want to run Clippy and rustfmt on the code first. This is not a requirement though and will never block a pull-request from being merged.
That's it, happy contributions! 🎉 🎉 🎉
Browser compatibility and testing
Currently we don't have a strict browser compatibility matrix due to our limited resources. We generally strive to keep mdBook compatible with a relatively recent browser on all of the most major platforms. That is, supporting Chrome, Safari, Firefox, Edge on Windows, macOS, Linux, iOS, and Android. If possible, do your best to avoid breaking older browser releases.
Any change to the HTML or styling is encouraged to manually check on as many browsers and platforms that you can. Unfortunately at this time we don't have any automated UI or browser testing, so your assistance in testing is appreciated.
Updating highlight.js
The following are instructions for updating highlight.js.
- Clone the repository at https://github.com/highlightjs/highlight.js
- Check out a tagged release (like
10.1.1
). - Run
npm install
- Run
node tools/build.js :common apache armasm coffeescript d handlebars haskell http julia nginx properties r scala x86asm yaml
- Compare the language list that it spits out to the one in
syntax-highlighting.md
. If any are missing, add them to the list and rebuild (and update these docs). If any are added to the common set, add them tosyntax-highlighting.md
. - Copy
build/highlight.min.js
to mdbook's directoryhighlight.js
. - Be sure to check the highlight.js CHANGES for any breaking changes. Breaking changes that would affect users will need to wait until the next major release.
- Build mdbook with the new file and build some books with the new version and compare the output with a variety of languages to see if anything changes. The test_book contains a chapter with many languages to examine.