nicolaskruchten
nicolaskruchten

Reputation: 27410

How can I use literal HTML in a CoffeeKup template?

I'm becoming a huge fan of CoffeeKup, but I'm wondering how I can use literal HTML in such a template? For example when I just want to copy-paste some existing, non-CoffeeKup markup.

Upvotes: 3

Views: 598

Answers (2)

ivarni
ivarni

Reputation: 17878

Have you tried using this tool too for converting your markup instead of just inlining in?

https://github.com/brandonbloom/html2coffeekup

It's linked from the main github page of coffeekup. If it handles your old markup it would be a more elegant solution.

Upvotes: 0

Maurice
Maurice

Reputation: 271

You can add arbitrary text with the text function:

text '<p>foo</p>'

For multiline strings, CoffeeScript's heredocs are a pleasure:

text '''
  <table>
    <tr>
      <td>Foo</td>
    </tr>
  </table>
'''

Just make sure you have autoescape set to false (the default value).

Upvotes: 5

Related Questions