- Mastering Rust
- Rahul Sharma Vesa Kaihlavirta
- 135字
- 2021-07-02 13:35:26
Hosting documentation
After your documentation has been generated, you will need to host it somewhere for the public to view and use. There are three possibilities here:
- docs.rs: Crates that are hosted on crates.io get their documentation page automatically generated and hosted on https://docs.rs.
- GitHub pages: You can host your documentation on the gh-pages branch if your crate is on GitHub.
- External website: You can manage your own web server for hosting documentation. Rust's standard library documentation is a fine example of this: https://doc.rust-lang.org/std/.
As an added note, if your project's documentation spans more than two to three pages and requires a detailed introduction, then there's a better option to generate book-like documentation. This is done by using the mdbook project. For more information on that, check out their GitHub page at https://github.com/rust-lang-nursery/mdBook.
推薦閱讀
- Mastering Ext JS(Second Edition)
- Learning Python Web Penetration Testing
- Mastering JavaScript Functional Programming
- Pandas Cookbook
- UI智能化與前端智能化:工程技術、實現方法與編程思想
- SQL Server 2012數據庫管理與開發項目教程
- PySide GUI Application Development(Second Edition)
- TypeScript項目開發實戰
- Arduino家居安全系統構建實戰
- 運用后端技術處理業務邏輯(藍橋杯軟件大賽培訓教材-Java方向)
- Python硬件編程實戰
- Python數據預處理技術與實踐
- Java EE輕量級解決方案:S2SH
- Mastering ArcGIS Server Development with JavaScript
- Kotlin入門與實戰