-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsymbols.html
More file actions
45 lines (35 loc) · 811 Bytes
/
symbols.html
File metadata and controls
45 lines (35 loc) · 811 Bytes
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
44
45
---
layout: default
title: Symbols A-Z
---
<h2>Symbols A-Z</h2>
{% for symbol in site.data.symbols %}
<a href="#{{symbol.name}}">{{ symbol.name }}</a> •
{% endfor %}
<!-- todo/fix: do not include bullet for first (or last) table -->
{% for symbol in site.data.symbols %}
<a name="{{symbol.name}}"></a><h3>{{ symbol.name }}</h3>
{% if symbol.tables.size > 0 %}
<div class='tables'>
{% for table in symbol.tables %}
{{ table }} •
{% endfor %}
</div>
{% endif %}
{% if symbol.columns.size > 0 %}
<div class='columns'>
{% for column in symbol.columns %}
<div class='column'>
{{ column.name }}
<span class='tables'>
(
{% for table in column.tables %}
{{ table }} •
{% endfor %}
)
</span>
</div>
{% endfor %}
</div>
{% endif %}
{% endfor %}