-
Notifications
You must be signed in to change notification settings - Fork 2
/
symbols.html
43 lines (34 loc) · 990 Bytes
/
symbols.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
---
title: Symbols A-Z
layout: default
---
<h2>Symbols A-Z</h2>
{% for symbol in site.data.symbols %}
<a href="#{{symbol.name}}">{{ symbol.name }}</a>{% unless forloop.last %} •{% endunless %}
{% endfor %}
{% for symbol in site.data.symbols %}
<h3 id="{{symbol.name}}">{{ symbol.name }}</h3>
{% if symbol.tables.size > 0 %}
<div class='tables'>
{% for table in symbol.tables %}
<span title="table {{ table }}">{{ table }}</span><a href="{{ '/#' | append: table | relative_url }}">↩</a>{% unless forloop.last %} {% endunless %}
{% endfor %}
</div>
{% endif %}
{% if symbol.columns.size > 0 %}
<div class='columns'>
{% for column in symbol.columns %}
<div class='column'>
<span title="column {{ column.name }}">{{ column.name }}</span>
<span class='tables'>
(
{% for table in column.tables %}
{{ table }}{% unless forloop.last %} •{% endunless %}
{% endfor %}
)
</span>
</div>
{% endfor %}
</div>
{% endif %}
{% endfor %}