From f764358ce4400c029c4c47d8929fec9ccd80cbd3 Mon Sep 17 00:00:00 2001 From: Joel Alvarez Date: Mon, 27 Jul 2026 14:14:42 -0700 Subject: [PATCH] docs: configure mdbook navigation --- .gitignore | 3 ++- book.toml | 13 +++++++++++++ 2 files changed, 15 insertions(+), 1 deletion(-) create mode 100644 book.toml diff --git a/.gitignore b/.gitignore index ea8c4bf..564055b 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ -/target +/book/ +/target/ diff --git a/book.toml b/book.toml new file mode 100644 index 0000000..8e8ac7c --- /dev/null +++ b/book.toml @@ -0,0 +1,13 @@ +[book] +title = "API Design en Rust" +description = "DiseƱo de APIs en Rust para ingenieros de software." +authors = ["Jeresoft Academy"] +language = "es-MX" +src = "docs" + +[build] +build-dir = "book" + +[output.html] +git-repository-url = "https://github.com/jeresoftx/rust-api-design" +edit-url-template = "https://github.com/jeresoftx/rust-api-design/edit/main/{path}"