I have passed a list of titles that I have passed through from my controller:
@titles:List[String]
I want to cycle through generating some html headings with {mmm} appearing after:
@titles.map { title =>
<h1>{title} {mmm}</h1>
}
Clearly there is a problem as it will try and find a variable called mmm. How do I escape the brackets?
Or is there a more idiomatic way to generate the HTML that doesn't involve mapping the list? Very new to this!