Skip to content
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

Add some useful config options #18

Merged
merged 2 commits into from
Sep 22, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 16 additions & 2 deletions book.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,23 @@
[book]
title = "The Rust book for Drones"
authors = ["The AeroRust community <[email protected]>"]
description = "Build and deploy drone technologies using Rust"

language = "en"
multilingual = false
src = "drone-book"
title = "The Rust book for Drones"

[rust]
# individual code blocks can append `,edition20XX` to use other editione.g.:
# ```rust,edition2015
edition = "2021"

[output.html]
smart-punctuation = true
git-repository-url = "https://github.com/AeroRust/mav/tree/main/drone-book"
git-repository-icon = "fa-github"
# site-url = ??? the documentation: The url where the book will be hosted. This is required to ensure navigation links and script/css imports in the 404 file work correctly, even when accessing urls in subdirectories. Defaults to /. If site-url is set, make sure to use document relative links for your assets, meaning they should not start with /.

[build]
build-dir = "drone-book/book"
build-dir = "drone-book/book"
create-missing = false
Loading