문제

I'm using IDEA 12.1.4, and when I try to insert a line/block comment into an HTML file (*.html), it inserts a jinja2 style comment.

E.g.

<div class="form-group">

becomes...

{# <div class="form-group"> #}

I tried manually setting the Template Data Language to HTML, and jinja files should only be recognized when they have an extension of .jinja. Is there some other setting I'm missing?

도움이 되었습니까?

해결책

Go here to change template language settings:

File -> Settings -> Project Settings -> Python Template Languages -> Template Language -> %set_appropriate%.

다른 팁

I think the problem occurred because my project was configured as Flask Project. That added the following configuration to my Project.iml file:

<component name="TemplatesService">
    <option name="TEMPLATE_CONFIGURATION" value="Jinja2" />
    <option name="TEMPLATE_FOLDERS">
        <list>
            <option value="$MODULE_DIR$/project/app/assets/partials" />
        </list>
    </option>
</component>

When I manually deleted this section and closed/reopened the project, I was able to insert HTML comments.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top