How can I use literal HTML in a CoffeeKup template?

604 Views Asked by At

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.

2

There are 2 best solutions below

1
On BEST ANSWER

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).

0
On

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.