What HTML template language uses <$ command $> and <$= value_to_insert $> ?
Posted
by Daniel Martin
on Stack Overflow
See other posts from Stack Overflow
or by Daniel Martin
Published on 2010-05-28T13:18:11Z
Indexed on
2010/05/28
13:22 UTC
Read the original article
Hit count: 236
html
|unknown-language
I'm trying to determine what the original language is of a place that includes snippets like:
<div class="responselist">
<$ for ( var i = 0; i < responses.length; i++) { $>
<div class="response">
<div class="response-body" id="response-<$=responses[i].ResponseID $>"><$= responses[i].Body $></div>
</div>
<$ } $>
</div>
© Stack Overflow or respective owner