Attribute value uses invalid event symbol Eclipse error

The following error appears in Eclipse juno:

Attribute value (POST) uses an invalid case character

in the following line inside one of my HTML files:

<form action="http://allteamz.us5.list-manage.com/subscribe/post" method="POST" id="mc-embedded-subscribe-form"> 

Is there any way to tell eclipse to ignore this error? Tried a few things, but nothing works.

+4
source share
2 answers

Go to Windows → Preferences → Web Files → HTML Files → Validation. A list should be shown, and there should be a heading in bold under the name Attributes. Choosing Ignore for the Attribute Value Using Invalid Case Symbol should solve it.

+9
source

Eclipse acted funky, but after the restart, normal check-ignore worked.

Go to Eclipse (or Window) -> Settings -> Validation -> Validator Validator, and then "uncheck" and manually, and build

0
source

Source: https://habr.com/ru/post/1488904/


All Articles