What cli HTML formatter from NPM you can recommend?

I tried html but it inline Zola syntax.

Looks like js-beautify works for me.

I’m using VSCode with the Tera extension and prettier, it’s not working out very nicely for me at all when working with the html templating.

{% extends "index.html" %} {% block title %} {{ page.title }} {% endblock
title %} {% block content %}
<h1>{{ page.title }}</h1>
{{ page.content | safe }} {% endblock content %}

Decided to stop using prettier and manually format myself, it’d be nice if it was supported in vscode.