raymyers / JHaml

Haml (XHTML Abstraction Markup Language) implementation in Java.
GNU General Public License v3.0
82 stars 10 forks source link

Escaping with \ at beginnning of line #1

Closed raymyers closed 14 years ago

raymyers commented 14 years ago

From the HAML reference.

Escaping: \

The backslash character escapes the first character of a line, allowing use of otherwise interpreted characters as plain text. For example:

%title
  = @title
  \= @title

is compiled to:

<title>
  MyPage
  = @title
</title>
raymyers commented 14 years ago

Closed by 4b973b48ada03b9981e69810eb584cfaf688754d.