From ed18714ed0db81b6f4d99a366787e8613c3e4af2 Mon Sep 17 00:00:00 2001 From: Alexey Dubovskoy Date: Sun, 15 Dec 2024 20:24:58 +0000 Subject: [PATCH] feat: render data unsorted --- README.md | 8 ++++---- scripts/render_readme.py | 3 +-- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index db9974a..1728cfb 100644 --- a/README.md +++ b/README.md @@ -18,8 +18,11 @@ This is a curated list of cookbooks and recipes involving the use of the cooklan | Website | Repository | User | Description | |---------|----------|------|-------------| -| - | [cookbook](https://github.com/bubonicfred/cookbook) | [bubonicfred](https://github.com/bubonicfred) | Repository of recipes made with Cooklang. | | - | [cookbook](https://github.com/dubadub/cookbook) | [dubadub](https://github.com/dubadub/) | Repo with recipes written in Cooklang. | +| [recipes](https://nicholaswilde.io/recipes/) | [recipes](https://github.com/nicholaswilde/recipes/tree/main/cook) | [nicholaswilde](https://github.com/nicholaswilde/) | A collection of recipes made with Cooklang. | +| [cooking book](https://net-mist-cooking-book.netlify.app/) | [remy](https://github.com/Net-Mist/remy) | [Net-Mist](https://github.com/Net-Mist) | Contains a list of French cooking recipes. | +| - | [cookbook](https://github.com/bubonicfred/cookbook) | [bubonicfred](https://github.com/bubonicfred) | Repository of recipes made with Cooklang. | +| [Dan's Online Recipe Book](https://bonmot.ca/~daniel/Recipes/) |- | [CapnDan](https://bonmot.ca/~daniel/) | Dan's Online Recipe Book. | | - | [CookBook](https://github.com/Diegothx/CookBook) | [Diegothx](https://github.com/Diegothx) | Repo with recipes written in Cooklang. | | - | [RecipeManager](https://github.com/javieruhk/RecipeManager/recipes) | [javieruhk](https://github.com/javieruhk) | Repo with recipes written in Cooklang. | | - | [cookbook](https://github.com/2xAA/cookbook/public/recipes) | [2xAA](https://github.com/2xAA) | Repo with recipes written in Cooklang. | @@ -55,8 +58,5 @@ This is a curated list of cookbooks and recipes involving the use of the cooklan | - | [recipe_archive](https://github.com/tntraina/recipe_archive) | [tntraina](https://github.com/tntraina) | Repo with recipes written in Cooklang. | | - | [recipes](https://github.com/TyHil/recipes/recipes) | [TyHil](https://github.com/TyHil) | Repo with recipes written in Cooklang. | | - | [innovation-dinner-2022](https://github.com/XpiritBV/innovation-dinner-2022) | [XpiritBV](https://github.com/XpiritBV) | Repo with recipes written in Cooklang. | -| [cooking book](https://net-mist-cooking-book.netlify.app/) | [remy](https://github.com/Net-Mist/remy) | [Net-Mist](https://github.com/Net-Mist) | Contains a list of French cooking recipes. | -| [Dan's Online Recipe Book](https://bonmot.ca/~daniel/Recipes/) |- | [CapnDan](https://bonmot.ca/~daniel/) | Dan's Online Recipe Book. | -| [recipes](https://nicholaswilde.io/recipes/) | [recipes](https://github.com/nicholaswilde/recipes/tree/main/cook) | [nicholaswilde](https://github.com/nicholaswilde/) | A collection of recipes made with Cooklang. | [1]: https://cooklang.org/ diff --git a/scripts/render_readme.py b/scripts/render_readme.py index d6a9ff8..4cc76f1 100644 --- a/scripts/render_readme.py +++ b/scripts/render_readme.py @@ -34,9 +34,8 @@ def render_readme_template(): user_cookbooks=yaml_data[ROOT_NODE], ) return output - + def main(): - massage_data() print(render_readme_template()) return 0