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.htmlEdit files in-place (overwrite with formatted output):
kirei --write index.htmlExample using conform.nvim:
require("conform").setup({
formatters = {
kirei = {
command = 'kirei',
args = {
'--stdin-filepath',
'$FILENAME',
'-',
},
},
},
})