diff --git a/.all-contributorsrc b/.all-contributorsrc index 63c31099b..badd54d17 100644 --- a/.all-contributorsrc +++ b/.all-contributorsrc @@ -101,6 +101,7 @@ "skipCi": true, "repoType": "github", "repoHost": "https://github.com", + "badgeTemplate": "[![All Contributors](https://img.shields.io/badge/all_contributors-<%= contributors.length %>-orange.svg?style=flat-square)](#contributors)", "projectName": "cairo-book.github.io", "projectOwner": "cairo-book" } diff --git a/README.md b/README.md index 6519f9352..a8413cdca 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,10 @@
- -[![All Contributors](https://img.shields.io/badge/all_contributors-9-orange.svg?style=flat-square)](#contributors-) - + + + + [![All Contributors](https://img.shields.io/badge/all_contributors-9-orange.svg?style=flat-square)](#contributors) + +

The Cairo Programming Language Book

Alexandria

@@ -77,7 +80,7 @@ The mdbook-cairo backend is working as following: number of the `fn main()` found in the chapter. 4. If you have a code block with a `fn main()` function that you know does not compile, you can indicate it by adding the `does_not_compile` attribute to the code block, like this: - + ```` ```rust,does_not_compile fn main() { @@ -89,7 +92,7 @@ The mdbook-cairo backend is working as following: but will not be extracted into a Cairo program. 5. Alternatively, if you want to disable the format check using `cairo-format`, - you can add the `ignore_format` attribute to the code block, like this: + you can add the `ignore_format` attribute to the code block, like this: ```` ```rust,ignore_format