From b1e384b03b22e6d53497acb0f7582a2ba576a09f Mon Sep 17 00:00:00 2001 From: Matt Brubeck Date: Sat, 31 Dec 2016 09:20:54 -0800 Subject: [PATCH] Fix a broken link in the documentation This fixes a broken link on http://azerupi.github.io/mdBook/cli/init.html The `..` is redundant because the document's base URI is set to `path_to_root`. It breaks if the base URI is not at the server root. --- book-example/src/cli/init.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/book-example/src/cli/init.md b/book-example/src/cli/init.md index a782369b..43d1ae02 100644 --- a/book-example/src/cli/init.md +++ b/book-example/src/cli/init.md @@ -22,7 +22,7 @@ configuration files, etc. - The `book` directory is where your book is rendered. All the output is ready to be uploaded to a server to be seen by your audience. -- The `SUMMARY.md` file is the most important file, it's the skeleton of your book and is discussed in more detail in another [chapter](../format/summary.html). +- The `SUMMARY.md` file is the most important file, it's the skeleton of your book and is discussed in more detail in another [chapter](format/summary.html). #### Tip & Trick: Hidden Feature When a `SUMMARY.md` file already exists, the `init` command will first parse it and generate the missing files according to the paths used in the `SUMMARY.md`. This allows you to think and create the whole structure of your book and then let mdBook generate it for you.