We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'd like to use the Django HTML and Jinja(jinja2) formats in "unibeautify cli".
Django HTML
Jinja(jinja2)
"Beautifier not found: Pretty Diff" is displayed.
$ ./node_modules/.bin/unibeautify -l HTML check.html Beautifier not found: Pretty Diff
Is there any mistake in my procedure? Or is it a bug?
npm init -y npm install -D @unibeautify/cli @unibeautify/beautifier-prettydiff
{% if latest_question_list %} <ul> {% for question in latest_question_list %} <li><a href="/polls/{{ question.id }}/">{{ question.question_text }}</a></li> {% endfor %} </ul> {% else %} <p>No polls are available.</p> {% endif %}
{ "HTML": { "indent_size": 4, "indent_char": " ", "wrap_line_length": 100, "wrap_prose": "always", "beautifiers": ["Pretty Diff"] } }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Description
I'd like to use the
Django HTML
andJinja(jinja2)
formats in "unibeautify cli"."Beautifier not found: Pretty Diff" is displayed.
Is there any mistake in my procedure? Or is it a bug?
Repro
Install
HTML source (check.html)
configuration (.unibeautifyrc.json)
The text was updated successfully, but these errors were encountered: