How to change the template for new HTML documents? Follow
When I create a new HTML document in WebStorm I get a file with this content:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title></title>
</head>
<body>
</body>
</html>
I would like to change this template ( set doctype to <!doctype html> and add <meta charset="UTF-8"> ). How do I do that?
Please sign in to leave a comment.
See Settings | File Templates | HTML.
So easy :) Thanks.