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 don't know if I should file two separate issues or not. I intuit they are relaed
First issue about indentation
<ul class="nav pull-right"> {% if user.is_authenticated %} <li><a href="/register/">Regístrate</a></li> {% else %} <li><a href="/register/">Regístrate</a></li> <li><a href="/login/">Login</a></li> {% endif %} </ul>
When it should look like this
Althought it correctly indendents this
{% if user.is_authenticated %} <ul class="nav pull-right"> <li><a href="/register/">Regístrate</a></li> </ul> {% else %} <ul class="nav pull-right"> <li><a href="/register/">Regístrate</a></li> <li><a href="/login/">Login</a></li> </ul> {% endif %}
The second issue is that pony-mode doesn't indent and prevents HTML-mode to indent if there are no characters on the line. Not even ctrl-j works.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I don't know if I should file two separate issues or not. I intuit they are relaed
First issue about indentation
When it should look like this
Althought it correctly indendents this
The second issue is that pony-mode doesn't indent and prevents HTML-mode to indent if there are no characters on the line. Not even ctrl-j works.
The text was updated successfully, but these errors were encountered: