Ashwin V. Mohanan
Digitize and visualize
97ba84c
raw
history blame contribute delete
823 Bytes
<svg viewBox="0 0 {{ page.width }} {{ page.height }}" xmlns="http://www.w3.org/2000/svg">
<image height="{{ page.height }}" width="{{ page.width }}" href="/gradio_api/file={{ page.path }}" />
{%- for line in page.cells -%}
<a class="cellline line{{loop.index}} highlighted" onmouseover="document.querySelectorAll('.line{{loop.index}}').forEach(element => {element.classList.remove('highlighted')});" onmouseout="document.querySelectorAll('.line{{loop.index}}').forEach(element => {element.classList.add('highlighted')});">
<polygon id="{{ loop.index }}" points="{% for point in line.polygon %}{{ point|join(',') }}{% if not loop.last %} {% endif %}{% endfor %}"/>
<text class="celltext" x="{{ line.text_x }}" y="{{ line.text_y }}">{{ line.text }}</text>
</a>
{% endfor %}
</svg>