+++ date = "2022-11-22T13:25:53+00:00" lastmod = "2022-11-22T13:25:53+00:00" tags = [ "webdev", "programs" ] author = "tdro" +++ [Blade CLI](https://github.com/surgiie/blade-cli#readme) is a nice find. I saw a past iteration of this a while back in [nsrosenqvist/blade-cli](https://github.com/nsrosenqvist/blade-cli#readme). Basically, it's a {{< abbr "cli" "command line interface" >}} for kinda rendering [blade templates](https://laravel.com/docs/9.x/blade). Don't ask why... ```yaml {caption="data.yaml"} name: {{ $name }} type: {{ $type }} ``` ```shell blade render data.yaml --name="name" --type="type" ```