Alex Vince
Alex Vince

Reputation: 69

How to get eclipse Helios to recognise HTML5 elements

Hi all I have spent some time googling this but to no avail. If anyone could point me in the right direction of some resources on getting my eclipse bundle recognising the new HTML5 tags that would be greatly appreciated. I am getting annoyed with all these little warning signs. I am using

Eclipse for PHP Developers

Version: Helios Release

Cheers in advance!

Upvotes: 4

Views: 6355

Answers (1)

abc
abc

Reputation: 11

The way i solve this is adding this tag line in the header

<!DOCTYPE html>
<html>
<head>
**<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />**
<title>Canvas tutorial</title>
......
...
.

And now the canvas tag gets recognize

Upvotes: 1

Related Questions