What I’m trying to do is include a partial html template inside a “”" quoted string so that its output can be used programatically.
So I have a template in partials with html that includes '#{} sequences.
then I have a js.coffee.eco file with the script. which has a tripple quoted sting that looks like
""" <%- @partial("todoItem") %>"""
If I manuyally do a transaltion from eco to coffee, it does the right thing.
Similarrly if I tak the intermediate coffee form it gets processed into javascript correctly.
But when docpad runs the full translation, it preoduces broken javascript which dosn’t close its strings properly. So yea does this count as an issue with the eco plugin or the coffee plugin?