How to put a hyperlink in the middle of a paragraph using the slim templating language?

Erik picture Erik · Sep 27, 2011 · Viewed 7.9k times · Source

How do you write the following in the slim templating language?

<p>Join the <a href="">Google group</a> and let us know what you think, or what other features you’d like to see.</p>

I tried the following:

p
  ' Join the
  a href="" Google Group
  ' and let us know what you think, or what other features you’d like to see

But that doesn't work because the words 'Group' and 'and' do not have whitespace between them.

Answer

Erik picture Erik · Sep 27, 2011

Apparently you can add extra spaces after the quote:

p
  ' Join the
  a href="" Google Group
  '  and let us know what you think, or what other features you’d like to see