哈姆尔非法筑巢

发布于 2024-12-19 22:03:11 字数 475 浏览 0 评论 0原文

这是我的 Haml 代码:

%html
  %head
  %body
    %table {'width' => 638, 'border' => 0, 'cellpadding' => 0, 'cellspacing' => 0}
      %tr
        %td {'width' => 27, 'height' => 100}
        %td {'width' => 582, 'height' => 100}
        %td {'width' => 29, 'height' => 100}

当我输入 haml example.haml example.html 时,出现以下错误:

第 5 行语法错误:非法嵌套:内容不能同时在与 %table 相同的行并嵌套在其中。

我做错了什么?

Here's my Haml code:

%html
  %head
  %body
    %table {'width' => 638, 'border' => 0, 'cellpadding' => 0, 'cellspacing' => 0}
      %tr
        %td {'width' => 27, 'height' => 100}
        %td {'width' => 582, 'height' => 100}
        %td {'width' => 29, 'height' => 100}

when I enter haml example.haml example.html, I get the following error:

Syntax error on line 5: Illegal nesting: content can't be both given on the same line as %table and nested within it.

What am I doing incorrectly?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

对你再特殊 2024-12-26 22:03:11

您需要删除标签和大括号之间的空格,如下所示:

%html
  %head
  %body
    %table{'width' => 638, 'border' => 0, 'cellpadding' => 0, 'cellspacing' => 0}
      %tr
        %td{'width' => 27, 'height' => 100}
        %td{'width' => 582, 'height' => 100}
        %td{'width' => 29, 'height' => 100}

You need to remove the spaces between the tags and the braces, like so:

%html
  %head
  %body
    %table{'width' => 638, 'border' => 0, 'cellpadding' => 0, 'cellspacing' => 0}
      %tr
        %td{'width' => 27, 'height' => 100}
        %td{'width' => 582, 'height' => 100}
        %td{'width' => 29, 'height' => 100}
一张白纸 2024-12-26 22:03:11

我想帮助其他人避免非法嵌套的情况,如果他们没有意识到他们像我一样犯了错字。

如果你忘记了元素中的%,它会说非法嵌套

p.small
  Some text!! Wow!!!!!!

这将导致非法嵌套错误。不要忘记你的%s!

%p.small
  Some text that will actually view without errors, Profit!

I want to help others avoid the illegal nesting situation if they don't realize they made a typo like me.

It will say illegal nesting if you forget the % in an element

p.small
  Some text!! Wow!!!!!!

That will result in the illegal nesting error. Don't forget your %s!

%p.small
  Some text that will actually view without errors, Profit!
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文