@@ -77,3 +77,92 @@ license: |
77
77
{% endif %}
78
78
{% endfor %}
79
79
80
+ {% for static_file in site.static_files %}
81
+ {% if static_file.name == 'generated-math-funcs-table.html' %}
82
+ ### Mathematical Functions
83
+ {% include_relative generated-math-funcs-table.html %}
84
+ #### Examples
85
+ {% include_relative generated-math-funcs-examples.html %}
86
+ {% break %}
87
+ {% endif %}
88
+ {% endfor %}
89
+
90
+ {% for static_file in site.static_files %}
91
+ {% if static_file.name == 'generated-string-funcs-table.html' %}
92
+ ### String Functions
93
+ {% include_relative generated-string-funcs-table.html %}
94
+ #### Examples
95
+ {% include_relative generated-string-funcs-examples.html %}
96
+ {% break %}
97
+ {% endif %}
98
+ {% endfor %}
99
+
100
+ {% for static_file in site.static_files %}
101
+ {% if static_file.name == 'generated-conditional-funcs-table.html' %}
102
+ ### Conditional Functions
103
+ {% include_relative generated-conditional-funcs-table.html %}
104
+ #### Examples
105
+ {% include_relative generated-conditional-funcs-examples.html %}
106
+ {% break %}
107
+ {% endif %}
108
+ {% endfor %}
109
+
110
+ {% for static_file in site.static_files %}
111
+ {% if static_file.name == 'generated-bitwise-funcs-table.html' %}
112
+ ### Bitwise Functions
113
+ {% include_relative generated-bitwise-funcs-table.html %}
114
+ #### Examples
115
+ {% include_relative generated-bitwise-funcs-examples.html %}
116
+ {% break %}
117
+ {% endif %}
118
+ {% endfor %}
119
+
120
+ {% for static_file in site.static_files %}
121
+ {% if static_file.name == 'generated-conversion-funcs-table.html' %}
122
+ ### Conversion Functions
123
+ {% include_relative generated-conversion-funcs-table.html %}
124
+ #### Examples
125
+ {% include_relative generated-conversion-funcs-examples.html %}
126
+ {% break %}
127
+ {% endif %}
128
+ {% endfor %}
129
+
130
+ {% for static_file in site.static_files %}
131
+ {% if static_file.name == 'generated-predicate-funcs-table.html' %}
132
+ ### Predicate Functions
133
+ {% include_relative generated-predicate-funcs-table.html %}
134
+ #### Examples
135
+ {% include_relative generated-predicate-funcs-examples.html %}
136
+ {% break %}
137
+ {% endif %}
138
+ {% endfor %}
139
+
140
+ {% for static_file in site.static_files %}
141
+ {% if static_file.name == 'generated-csv-funcs-table.html' %}
142
+ ### Csv Functions
143
+ {% include_relative generated-csv-funcs-table.html %}
144
+ #### Examples
145
+ {% include_relative generated-csv-funcs-examples.html %}
146
+ {% break %}
147
+ {% endif %}
148
+ {% endfor %}
149
+
150
+ {% for static_file in site.static_files %}
151
+ {% if static_file.name == 'generated-misc-funcs-table.html' %}
152
+ ### Misc Functions
153
+ {% include_relative generated-misc-funcs-table.html %}
154
+ #### Examples
155
+ {% include_relative generated-misc-funcs-examples.html %}
156
+ {% break %}
157
+ {% endif %}
158
+ {% endfor %}
159
+
160
+ {% for static_file in site.static_files %}
161
+ {% if static_file.name == 'generated-generator-funcs-table.html' %}
162
+ ### Generator Functions
163
+ {% include_relative generated-generator-funcs-table.html %}
164
+ #### Examples
165
+ {% include_relative generated-generator-funcs-examples.html %}
166
+ {% break %}
167
+ {% endif %}
168
+ {% endfor %}
0 commit comments