Question
return <<-HTML
<li>
<a href = "some-link">Link-Title</a>
</li>
HTML
What are <<-HTML on the first line and HTML on the last line for?
Answer
It's a heredoc.
return <<-HTML
<li>
<a href = "some-link">Link-Title</a>
</li>
HTML
What are <<-HTML on the first line and HTML on the last line for?
It's a heredoc.