| Crates.io | kirei |
| lib.rs | kirei |
| version | 25.12.29 |
| created_at | 2025-09-07 17:31:54.610679+00 |
| updated_at | 2025-12-29 11:58:30.216959+00 |
| description | Askama formatter |
| homepage | |
| repository | https://github.com/lpnh/kirei.git |
| max_upload_size | |
| id | 1828362 |
| size | 128,558 |
Askama formatter
Note: kirei is currently experimental and under active development. Expect things to change as we carefully prune all these trees.
Format and output to stdout:
kirei index.html
Edit files in-place (overwrite with formatted output):
kirei --write index.html
Example using conform.nvim:
require("conform").setup({
formatters = {
kirei = {
command = 'kirei',
args = {
'--stdin-filepath',
'$FILENAME',
'-',
},
},
},
})