12
Formatação de código no Notepad ++
Existe um atalho de teclado para formatar o código no Notepad ++? Estou trabalhando principalmente com código HTML, CSS e Python. Por exemplo: <title>{% block title %} {% endblock %}</title> <link rel="stylesheet" href="/media/style.css" type="text/css" media="screen" /> </head> Para: <head> <title> {% block title %} {% endblock %} </title> <link rel="stylesheet" …