ejs テンプレートが別の関数内の関数を呼び出す方法はありますか? たとえば、私はこのようにしようとしています:
<% function graph(graph) { %>
<a href="<%= graph.href %>"><%= graph.description %></a>
<% } %>
<% function point(point) { %>
<Placemark id="<%= point.id %>">
<description>
<%= point.Apibudinimas %> <%= point.IP %>
<![CDATA[
<% graphs.map(graph) %>
]]>
</description>
</Placemark>
<% } %>
しかし、グラフは定義されていないと言っています...