Rust library to generate static websites
5
fork

Configure Feed

Select the types of activity you want to include in your feed.

small docs fixes (#48)

authored by

Mayank and committed by
GitHub
f82ffe57 f6e36895

+4 -3
+2 -1
website/content/docs/manual-install.md
··· 10 10 cd my-website 11 11 ``` 12 12 13 - Next, add Maudit as a dependency in your `Cargo.toml` file, or run `cargo add maudit` to do so automatically: 13 + Next, add Maudit as a dependency in your `Cargo.toml` file, or run `cargo add maudit` to do so automatically. You might also want to add [Maud](https://maud.lambda.xyz/) as a dependency if you plan to use it for templating. 14 14 15 15 ```toml 16 16 [dependencies] 17 17 maudit = "0.6" 18 + maud = "0.27" # optional 18 19 ``` 19 20 20 21 Voilà! You can now use Maudit in your project. Check out the rest of the [documentation](/docs) for more information on how to use Maudit, or if you prefer jumping straght into the code, take a look at the [examples](https://github.com/bruits/maudit/tree/main/examples) and the [API documentation](https://docs.rs/maudit).
+2 -2
website/content/docs/quick-start.md
··· 5 5 6 6 In this guide, you'll learn how to create a Maudit website and the general basis of Maudit in a few minutes of reading. 7 7 8 - If you prefer to read more detailed explanations, including exploration of various Maudit concepts, please read the [the tutorial](). 8 + If you prefer to read more detailed explanations, including exploration of various Maudit concepts, please read the [core concepts](/docs/content/). 9 9 10 10 **This guide assumes that you have Rust installed and are familiar with the terminal.** 11 11 ··· 72 72 73 73 fn main() -> Result<BuildOutput, Box<dyn std::error::Error>> { 74 74 coronate( 75 - routes![Index], 75 + routes![HelloWorld], 76 76 content_sources![], 77 77 BuildOptions::default() 78 78 )