 
<html>
   
  <body>
     
    <h1>SAMPLE1</h1>
     
    <p>members of this HASH will be inserted here and title</p>
     
  </body>
   
</html>
-------------------
__d2 = self # Obaq::HtmlCompiler::NoHint
@out << "  <html>\n    "
__d3 = __d2 # Obaq::HtmlCompiler::NoHint
__d4 = __d3 # Obaq::HtmlCompiler::NoHint
 @out << e(:body,a(:id, "model_data")) { [ "\n       ", e(:h1,a(:id, "title")) , "\n       ", e(:p,a(:id, "body")) , "\n    " ] }.expand(__d4).to_s
@out << "\n  </html>"
-------------------
  <html>
    
<body>
   
  <h1>SAMPLE1</h1>
   
  <p>members of this HASH will be inserted here and title</p>
   
</body>
  </html>
-------------------
__d2 = self # Obaq::HtmlCompiler::MemberData
@out << "  <html>\n    "
__d3 = __d2.model_data # Obaq::HtmlCompiler::MemberData
@out << "<body>\n       "
__d4 = __d3[:title] # Obaq::HtmlCompiler::HashData
if __d4 
@out << "<h1>"
@out << __d4.to_s 
@out << "</h1>"
end
@out << "\n       "
__d5 = __d3[:body] # Obaq::HtmlCompiler::HashData
if __d5 
@out << "<p>"
@out << __d5.to_s 
@out << "</p>"
end
@out << "\n    </body>\n  </html>"
-------------------
  <html>
    <body>
       <h1>SAMPLE1</h1>
       <p>members of this HASH will be inserted here and title</p>
    </body>
  </html>