My static site generator Cinnog using #Leptos and @bevy ECS got a new API. It now uses bevy_app under the hood which allows to define functionality like converting all markdown to HTML in a Bevy plugin.

Cinnog: https://github.com/NiklasEi/cinnog
Example: https://github.com/NiklasEi/cinnog_example/blob/main/generator/src/main.rs#L13-L22

GitHub - NiklasEi/cinnog: Experimental static site generator using Leptos with Bevy ECS as a data layer

Experimental static site generator using Leptos with Bevy ECS as a data layer - NiklasEi/cinnog

GitHub
@nikl_me @bevy as my dad would say, “neat hack”, but why would a static site generator need an ECS? I do like the plugin thing though
@slashscreen @bevy it doesn't have to be an ECS, but a data layer in a static site generator is awesome (see Gatsby). I went with Bevy ECS because of the nice API.