You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The preserve tag is used to keep newline characters.
From the haml source code:
Takes any string, finds all the newlines, and converts them to
HTML entities so they'll render correctly in
whitespace-sensitive tags without screwing up the indentation.
The
preservetag is used to keep newline characters.From the haml source code:
Here is an example:
https://github.com/haml/html2haml/blob/c41cb712816d2ea4300e7c1730328a59a63b2ba7/test/html2haml_test.rb#L196
http://haml.info/docs/yardoc/file.REFERENCE.html#filters
Ruby implementation:
https://github.com/haml/haml/blob/520d92cc4f52ffe0983b2760ea798c1680476019/lib/haml/helpers.rb#L107
https://github.com/haml/haml/blob/520d92cc4f52ffe0983b2760ea798c1680476019/lib/haml/helpers.rb#L128