私はHAMLを使用しており、次のコードが機能します。
content = '= User.last.name' #last.name = 'joe'
Haml::Engine.new(content).render >> joe
HAML がその文字列を正しく解析するのに、次の文字列を正しく解析できないのはなぜですか?
content = '= User.last.name
%title
html2haml and multiline titles'
Haml::Engine.xxxx(content) >> "= User.last.name
<title>
html2haml and multiline titles
</title>"