我正在学习HAML。如果我像这样创建一个基本的HAML文件:
%h2 Hello World
This is a test
并在命令行上运行HAML:
haml somehaml.haml someout.html
生成的html文件没有<head>
或<body>
标记:
<h2>Hello World</h2>
This is a test
我错过了什么?根据{{3}},html5应该是默认输出。
答案 0 :(得分:0)
您仍需要添加标签。 html 5是否大多是文档类型标题中的内容,默认情况下是html 5。试试这个:
%html
%head
%body
%h2 Hello World
This is a test