12 lines
226 B
Text
12 lines
226 B
Text
<html>
|
|
<%# comment %>
|
|
|
|
<%# basic %>
|
|
<%- foo = "1" %>
|
|
|
|
<%# interpolation %>
|
|
<%= " == #{ ( -> "LOL" )() } == " %>
|
|
|
|
<%# interpolation with nested curlies %>
|
|
<%= " == #{ { a: 1, b: { c: 3, d: 4 } } } == " %>
|
|
</html>
|