aboutsummaryrefslogtreecommitdiffhomepage
path: root/docs/data/docs.yaml
blob: f80c2b41e8b80c15287b7a1afd74c618d415f5cf (plain)
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
chroma:
  lexers:
  - Aliases:
    - abap
    Name: ABAP
  - Aliases:
    - abnf
    Name: ABNF
  - Aliases:
    - as
    - actionscript
    Name: ActionScript
  - Aliases:
    - as3
    - actionscript3
    Name: ActionScript 3
  - Aliases:
    - ada
    - ada95
    - ada2005
    Name: Ada
  - Aliases:
    - al
    Name: AL
  - Aliases:
    - ng2
    Name: Angular2
  - Aliases:
    - antlr
    Name: ANTLR
  - Aliases:
    - apacheconf
    - aconf
    - apache
    Name: ApacheConf
  - Aliases:
    - apl
    Name: APL
  - Aliases:
    - applescript
    Name: AppleScript
  - Aliases:
    - aql
    Name: ArangoDB AQL
  - Aliases:
    - arduino
    Name: Arduino
  - Aliases:
    - armasm
    Name: ArmAsm
  - Aliases:
    - autohotkey
    - ahk
    Name: AutoHotkey
  - Aliases:
    - autoit
    Name: AutoIt
  - Aliases:
    - awk
    - gawk
    - mawk
    - nawk
    Name: Awk
  - Aliases:
    - ballerina
    Name: Ballerina
  - Aliases:
    - bash
    - sh
    - ksh
    - zsh
    - shell
    Name: Bash
  - Aliases:
    - bash-session
    - console
    - shell-session
    Name: Bash Session
  - Aliases:
    - bat
    - batch
    - dosbatch
    - winbatch
    Name: Batchfile
  - Aliases:
    - bib
    - bibtex
    Name: BibTeX
  - Aliases:
    - bicep
    Name: Bicep
  - Aliases:
    - blitzbasic
    - b3d
    - bplus
    Name: BlitzBasic
  - Aliases:
    - bnf
    Name: BNF
  - Aliases:
    - bqn
    Name: BQN
  - Aliases:
    - brainfuck
    - bf
    Name: Brainfuck
  - Aliases:
    - c
    Name: C
  - Aliases:
    - csharp
    - c#
    Name: C#
  - Aliases:
    - cpp
    - c++
    Name: C++
  - Aliases:
    - caddyfile
    - caddy
    Name: Caddyfile
  - Aliases:
    - caddyfile-directives
    - caddyfile-d
    - caddy-d
    Name: Caddyfile Directives
  - Aliases:
    - capnp
    Name: Cap'n Proto
  - Aliases:
    - cassandra
    - cql
    Name: Cassandra CQL
  - Aliases:
    - ceylon
    Name: Ceylon
  - Aliases:
    - cfengine3
    - cf3
    Name: CFEngine3
  - Aliases:
    - cfs
    Name: cfstatement
  - Aliases:
    - chai
    - chaiscript
    Name: ChaiScript
  - Aliases:
    - chapel
    - chpl
    Name: Chapel
  - Aliases:
    - cheetah
    - spitfire
    Name: Cheetah
  - Aliases:
    - clojure
    - clj
    - edn
    Name: Clojure
  - Aliases:
    - cmake
    Name: CMake
  - Aliases:
    - cobol
    Name: COBOL
  - Aliases:
    - coffee-script
    - coffeescript
    - coffee
    Name: CoffeeScript
  - Aliases:
    - common-lisp
    - cl
    - lisp
    Name: Common Lisp
  - Aliases:
    - coq
    Name: Coq
  - Aliases:
    - cr
    - crystal
    Name: Crystal
  - Aliases:
    - css
    Name: CSS
  - Aliases:
    - cython
    - pyx
    - pyrex
    Name: Cython
  - Aliases:
    - d
    Name: D
  - Aliases:
    - dart
    Name: Dart
  - Aliases:
    - diff
    - udiff
    Name: Diff
  - Aliases:
    - django
    - jinja
    Name: Django/Jinja
  - Aliases:
    - zone
    - bind
    Name: dns
  - Aliases:
    - docker
    - dockerfile
    Name: Docker
  - Aliases:
    - dtd
    Name: DTD
  - Aliases:
    - dylan
    Name: Dylan
  - Aliases:
    - ebnf
    Name: EBNF
  - Aliases:
    - elixir
    - ex
    - exs
    Name: Elixir
  - Aliases:
    - elm
    Name: Elm
  - Aliases:
    - emacs
    - elisp
    - emacs-lisp
    Name: EmacsLisp
  - Aliases:
    - erlang
    Name: Erlang
  - Aliases:
    - factor
    Name: Factor
  - Aliases:
    - fennel
    - fnl
    Name: Fennel
  - Aliases:
    - fish
    - fishshell
    Name: Fish
  - Aliases:
    - forth
    Name: Forth
  - Aliases:
    - fortran
    - f90
    Name: Fortran
  - Aliases:
    - fortranfixed
    Name: FortranFixed
  - Aliases:
    - fsharp
    Name: FSharp
  - Aliases:
    - gas
    - asm
    Name: GAS
  - Aliases:
    - gdscript
    - gd
    Name: GDScript
  - Aliases:
    - gdscript3
    - gd3
    Name: GDScript3
  - Aliases:
    - genshi
    - kid
    - xml+genshi
    - xml+kid
    Name: Genshi
  - Aliases:
    - html+genshi
    - html+kid
    Name: Genshi HTML
  - Aliases:
    - genshitext
    Name: Genshi Text
  - Aliases:
    - cucumber
    - Cucumber
    - gherkin
    - Gherkin
    Name: Gherkin
  - Aliases:
    - glsl
    Name: GLSL
  - Aliases:
    - gnuplot
    Name: Gnuplot
  - Aliases:
    - go
    - golang
    Name: Go
  - Aliases:
    - go-html-template
    Name: Go HTML Template
  - Aliases:
    - go-template
    Name: Go Template
  - Aliases:
    - go-text-template
    Name: Go Text Template
  - Aliases:
    - graphql
    - graphqls
    - gql
    Name: GraphQL
  - Aliases:
    - groff
    - nroff
    - man
    Name: Groff
  - Aliases:
    - groovy
    Name: Groovy
  - Aliases:
    - handlebars
    - hbs
    Name: Handlebars
  - Aliases:
    - haskell
    - hs
    Name: Haskell
  - Aliases:
    - hx
    - haxe
    - hxsl
    Name: Haxe
  - Aliases:
    - hcl
    Name: HCL
  - Aliases:
    - hexdump
    Name: Hexdump
  - Aliases:
    - hlb
    Name: HLB
  - Aliases:
    - hlsl
    Name: HLSL
  - Aliases:
    - holyc
    Name: HolyC
  - Aliases:
    - html
    Name: HTML
  - Aliases:
    - http
    Name: HTTP
  - Aliases:
    - hylang
    Name: Hy
  - Aliases:
    - idris
    - idr
    Name: Idris
  - Aliases:
    - igor
    - igorpro
    Name: Igor
  - Aliases:
    - ini
    - cfg
    - dosini
    Name: INI
  - Aliases:
    - io
    Name: Io
  - Aliases:
    - iscdhcpd
    Name: ISCdhcpd
  - Aliases:
    - j
    Name: J
  - Aliases:
    - java
    Name: Java
  - Aliases:
    - js
    - javascript
    Name: JavaScript
  - Aliases:
    - json
    Name: JSON
  - Aliases:
    - julia
    - jl
    Name: Julia
  - Aliases:
    - jungle
    Name: Jungle
  - Aliases:
    - kotlin
    Name: Kotlin
  - Aliases:
    - lighty
    - lighttpd
    Name: Lighttpd configuration file
  - Aliases:
    - llvm
    Name: LLVM
  - Aliases:
    - lua
    Name: Lua
  - Aliases:
    - make
    - makefile
    - mf
    - bsdmake
    Name: Makefile
  - Aliases:
    - mako
    Name: Mako
  - Aliases:
    - md
    - mkd
    Name: markdown
  - Aliases:
    - mason
    Name: Mason
  - Aliases:
    - mathematica
    - mma
    - nb
    Name: Mathematica
  - Aliases:
    - matlab
    Name: Matlab
  - Aliases:
    - mcfunction
    Name: mcfunction
  - Aliases:
    - meson
    - meson.build
    Name: Meson
  - Aliases:
    - metal
    Name: Metal
  - Aliases:
    - minizinc
    - MZN
    - mzn
    Name: MiniZinc
  - Aliases:
    - mlir
    Name: MLIR
  - Aliases:
    - modula2
    - m2
    Name: Modula-2
  - Aliases:
    - monkeyc
    Name: MonkeyC
  - Aliases:
    - morrowind
    - mwscript
    Name: MorrowindScript
  - Aliases:
    - myghty
    Name: Myghty
  - Aliases:
    - mysql
    - mariadb
    Name: MySQL
  - Aliases:
    - nasm
    Name: NASM
  - Aliases:
    - natural
    Name: Natural
  - Aliases:
    - newspeak
    Name: Newspeak
  - Aliases:
    - nginx
    Name: Nginx configuration file
  - Aliases:
    - nim
    - nimrod
    Name: Nim
  - Aliases:
    - nixos
    - nix
    Name: Nix
  - Aliases:
    - objective-c
    - objectivec
    - obj-c
    - objc
    Name: Objective-C
  - Aliases:
    - ocaml
    Name: OCaml
  - Aliases:
    - octave
    Name: Octave
  - Aliases:
    - odin
    Name: Odin
  - Aliases:
    - ones
    - onesenterprise
    - 1S
    - 1S:Enterprise
    Name: OnesEnterprise
  - Aliases:
    - openedge
    - abl
    - progress
    - openedgeabl
    Name: OpenEdge ABL
  - Aliases:
    - openscad
    Name: OpenSCAD
  - Aliases:
    - org
    - orgmode
    Name: Org Mode
  - Aliases:
    - pacmanconf
    Name: PacmanConf
  - Aliases:
    - perl
    - pl
    Name: Perl
  - Aliases:
    - php
    - php3
    - php4
    - php5
    Name: PHP
  - Aliases:
    - phtml
    Name: PHTML
  - Aliases:
    - pig
    Name: Pig
  - Aliases:
    - pkgconfig
    Name: PkgConfig
  - Aliases:
    - plpgsql
    Name: PL/pgSQL
  - Aliases:
    - text
    - plain
    - no-highlight
    Name: plaintext
  - Aliases:
    - plutus-core
    - plc
    Name: Plutus Core
  - Aliases:
    - pony
    Name: Pony
  - Aliases:
    - postgresql
    - postgres
    Name: PostgreSQL SQL dialect
  - Aliases:
    - postscript
    - postscr
    Name: PostScript
  - Aliases:
    - pov
    Name: POVRay
  - Aliases:
    - powerquery
    - pq
    Name: PowerQuery
  - Aliases:
    - powershell
    - posh
    - ps1
    - psm1
    - psd1
    - pwsh
    Name: PowerShell
  - Aliases:
    - prolog
    Name: Prolog
  - Aliases:
    - promql
    Name: PromQL
  - Aliases:
    - java-properties
    Name: properties
  - Aliases:
    - protobuf
    - proto
    Name: Protocol Buffer
  - Aliases:
    - psl
    Name: PSL
  - Aliases:
    - puppet
    Name: Puppet
  - Aliases:
    - python
    - py
    - sage
    - python3
    - py3
    Name: Python
  - Aliases:
    - python2
    - py2
    Name: Python 2
  - Aliases:
    - qbasic
    - basic
    Name: QBasic
  - Aliases:
    - qml
    - qbs
    Name: QML
  - Aliases:
    - splus
    - s
    - r
    Name: R
  - Aliases:
    - racket
    - rkt
    Name: Racket
  - Aliases:
    - ragel
    Name: Ragel
  - Aliases:
    - perl6
    - pl6
    - raku
    Name: Raku
  - Aliases:
    - jsx
    - react
    Name: react
  - Aliases:
    - reason
    - reasonml
    Name: ReasonML
  - Aliases:
    - registry
    Name: reg
  - Aliases:
    - rst
    - rest
    - restructuredtext
    Name: reStructuredText
  - Aliases:
    - rexx
    - arexx
    Name: Rexx
  - Aliases:
    - rb
    - ruby
    - duby
    Name: Ruby
  - Aliases:
    - rust
    - rs
    Name: Rust
  - Aliases:
    - sas
    Name: SAS
  - Aliases:
    - sass
    Name: Sass
  - Aliases:
    - scala
    Name: Scala
  - Aliases:
    - scheme
    - scm
    Name: Scheme
  - Aliases:
    - scilab
    Name: Scilab
  - Aliases:
    - scss
    Name: SCSS
  - Aliases:
    - sed
    - gsed
    - ssed
    Name: Sed
  - Aliases:
    - sieve
    Name: Sieve
  - Aliases:
    - smali
    Name: Smali
  - Aliases:
    - smalltalk
    - squeak
    - st
    Name: Smalltalk
  - Aliases:
    - smarty
    Name: Smarty
  - Aliases:
    - snobol
    Name: Snobol
  - Aliases:
    - sol
    - solidity
    Name: Solidity
  - Aliases:
    - sp
    Name: SourcePawn
  - Aliases:
    - sparql
    Name: SPARQL
  - Aliases:
    - sql
    Name: SQL
  - Aliases:
    - squidconf
    - squid.conf
    - squid
    Name: SquidConf
  - Aliases:
    - sml
    Name: Standard ML
  - Aliases: null
    Name: stas
  - Aliases:
    - stylus
    Name: Stylus
  - Aliases:
    - svelte
    Name: Svelte
  - Aliases:
    - swift
    Name: Swift
  - Aliases:
    - systemd
    Name: SYSTEMD
  - Aliases:
    - systemverilog
    - sv
    Name: systemverilog
  - Aliases:
    - tablegen
    Name: TableGen
  - Aliases:
    - tal
    - uxntal
    Name: Tal
  - Aliases:
    - tasm
    Name: TASM
  - Aliases:
    - tcl
    Name: Tcl
  - Aliases:
    - tcsh
    - csh
    Name: Tcsh
  - Aliases:
    - termcap
    Name: Termcap
  - Aliases:
    - terminfo
    Name: Terminfo
  - Aliases:
    - terraform
    - tf
    Name: Terraform
  - Aliases:
    - tex
    - latex
    Name: TeX
  - Aliases:
    - thrift
    Name: Thrift
  - Aliases:
    - toml
    Name: TOML
  - Aliases:
    - tradingview
    - tv
    Name: TradingView
  - Aliases:
    - tsql
    - t-sql
    Name: Transact-SQL
  - Aliases:
    - turing
    Name: Turing
  - Aliases:
    - turtle
    Name: Turtle
  - Aliases:
    - twig
    Name: Twig
  - Aliases:
    - ts
    - tsx
    - typescript
    Name: TypeScript
  - Aliases:
    - typoscript
    Name: TypoScript
  - Aliases:
    - typoscriptcssdata
    Name: TypoScriptCssData
  - Aliases:
    - typoscripthtmldata
    Name: TypoScriptHtmlData
  - Aliases:
    - v
    - vlang
    Name: V
  - Aliases:
    - vsh
    - vshell
    Name: V shell
  - Aliases:
    - vala
    - vapi
    Name: Vala
  - Aliases:
    - vb.net
    - vbnet
    Name: VB.net
  - Aliases:
    - verilog
    - v
    Name: verilog
  - Aliases:
    - vhdl
    Name: VHDL
  - Aliases:
    - vhs
    - tape
    - cassette
    Name: VHS
  - Aliases:
    - vim
    Name: VimL
  - Aliases:
    - vue
    - vuejs
    Name: vue
  - Aliases: null
    Name: WDTE
  - Aliases:
    - wgsl
    Name: WebGPU Shading Language
  - Aliases:
    - whiley
    Name: Whiley
  - Aliases:
    - xml
    Name: XML
  - Aliases:
    - xorg.conf
    Name: Xorg
  - Aliases:
    - yaml
    Name: YAML
  - Aliases:
    - yang
    Name: YANG
  - Aliases:
    - z80
    Name: Z80 Assembly
  - Aliases:
    - zed
    Name: Zed
  - Aliases:
    - zig
    Name: Zig
config:
  archeTypeDir: archetypes
  assetDir: assets
  author: {}
  baseURL: ""
  build:
    buildStats:
      disableClasses: false
      disableIDs: false
      disableTags: false
      enable: false
    cacheBusters:
    - source: assets/.*\.(js|ts|jsx|tsx)
      target: (js|scripts|javascript)
    - source: assets/.*\.(css|sass|scss)$
      target: (css|styles|scss|sass)
    - source: (postcss|tailwind)\.config\.js
      target: (css|styles|scss|sass)
    - source: assets/.*\.(.*)$
      target: $1
    noJSConfigInAssets: false
    useResourceCacheWhen: fallback
  buildDrafts: false
  buildExpired: false
  buildFuture: false
  cacheDir: ""
  caches:
    assets:
      dir: :resourceDir/_gen
      maxAge: -1
    getcsv:
      dir: :cacheDir/:project
      maxAge: -1
    getjson:
      dir: :cacheDir/:project
      maxAge: -1
    getresource:
      dir: :cacheDir/:project
      maxAge: -1
    images:
      dir: :resourceDir/_gen
      maxAge: -1
    modules:
      dir: :cacheDir/modules
      maxAge: -1
  canonifyURLs: false
  cascade: []
  cleanDestinationDir: false
  contentDir: content
  copyright: ""
  dataDir: data
  defaultContentLanguage: en
  defaultContentLanguageInSubdir: false
  deployment:
    confirm: false
    dryRun: false
    force: false
    invalidateCDN: true
    matchers: null
    maxDeletes: 256
    order: null
    target: ""
    targets: null
    workers: 10
  disableAliases: false
  disableHugoGeneratorInject: false
  disableKinds: null
  disableLanguages: null
  disableLiveReload: false
  disablePathToLower: false
  enableEmoji: false
  enableGitInfo: false
  enableMissingTranslationPlaceholders: false
  enableRobotsTXT: false
  environment: production
  frontmatter:
    date:
    - date
    - publishdate
    - pubdate
    - published
    - lastmod
    - modified
    expiryDate:
    - expirydate
    - unpublishdate
    lastmod:
    - :git
    - lastmod
    - modified
    - date
    - publishdate
    - pubdate
    - published
    publishDate:
    - publishdate
    - pubdate
    - published
    - date
  hasCJKLanguage: false
  i18nDir: i18n
  ignoreCache: false
  ignoreErrors: null
  ignoreFiles: []
  ignoreVendorPaths: ""
  imaging:
    bgColor: '#ffffff'
    hint: photo
    quality: 75
    resampleFilter: box
  languageCode: ""
  languages:
    en:
      disabled: false
      languageCode: ""
      languageDirection: ""
      languageName: ""
      title: ""
      weight: 0
  layoutDir: layouts
  mainSections: null
  markup:
    asciidocExt:
      attributes: {}
      backend: html5
      extensions: []
      failureLevel: fatal
      noHeaderOrFooter: true
      preserveTOC: false
      safeMode: unsafe
      sectionNumbers: false
      trace: false
      verbose: false
      workingFolderCurrent: false
    defaultMarkdownHandler: goldmark
    goldmark:
      extensions:
        cjk:
          eastAsianLineBreaks: false
          enable: false
          escapedSpace: false
        definitionList: true
        footnote: true
        linkify: true
        linkifyProtocol: https
        strikethrough: true
        table: true
        taskList: true
        typographer:
          apostrophe: '’'
          disable: false
          ellipsis: '…'
          emDash: '—'
          enDash: '–'
          leftAngleQuote: '«'
          leftDoubleQuote: '“'
          leftSingleQuote: '‘'
          rightAngleQuote: '»'
          rightDoubleQuote: '”'
          rightSingleQuote: '’'
      parser:
        attribute:
          block: false
          title: true
        autoHeadingID: true
        autoHeadingIDType: github
        wrapStandAloneImageWithinParagraph: true
      renderer:
        hardWraps: false
        unsafe: false
        xhtml: false
    highlight:
      anchorLineNos: false
      codeFences: true
      guessSyntax: false
      hl_Lines: ""
      hl_inline: false
      lineAnchors: ""
      lineNoStart: 1
      lineNos: false
      lineNumbersInTable: true
      noClasses: true
      noHl: false
      style: monokai
      tabWidth: 4
    tableOfContents:
      endLevel: 3
      ordered: false
      startLevel: 2
  mediaTypes:
    application/json:
      delimiter: .
      suffixes:
      - json
    application/manifest+json:
      delimiter: .
      suffixes:
      - webmanifest
    application/octet-stream:
      delimiter: .
    application/pdf:
      delimiter: .
      suffixes:
      - pdf
    application/rss+xml:
      delimiter: .
      suffixes:
      - xml
      - rss
    application/toml:
      delimiter: .
      suffixes:
      - toml
    application/wasm:
      delimiter: .
      suffixes:
      - wasm
    application/xml:
      delimiter: .
      suffixes:
      - xml
    application/yaml:
      delimiter: .
      suffixes:
      - yaml
      - yml
    font/otf:
      delimiter: .
      suffixes:
      - otf
    font/ttf:
      delimiter: .
      suffixes:
      - ttf
    image/bmp:
      delimiter: .
      suffixes:
      - bmp
    image/gif:
      delimiter: .
      suffixes:
      - gif
    image/jpeg:
      delimiter: .
      suffixes:
      - jpg
      - jpeg
      - jpe
      - jif
      - jfif
    image/png:
      delimiter: .
      suffixes:
      - png
    image/svg+xml:
      delimiter: .
      suffixes:
      - svg
    image/tiff:
      delimiter: .
      suffixes:
      - tif
      - tiff
    image/webp:
      delimiter: .
      suffixes:
      - webp
    text/calendar:
      delimiter: .
      suffixes:
      - ics
    text/css:
      delimiter: .
      suffixes:
      - css
    text/csv:
      delimiter: .
      suffixes:
      - csv
    text/html:
      delimiter: .
      suffixes:
      - html
    text/javascript:
      delimiter: .
      suffixes:
      - js
      - jsm
      - mjs
    text/jsx:
      delimiter: .
      suffixes:
      - jsx
    text/markdown:
      delimiter: .
      suffixes:
      - md
      - markdown
    text/plain:
      delimiter: .
      suffixes:
      - txt
    text/tsx:
      delimiter: .
      suffixes:
      - tsx
    text/typescript:
      delimiter: .
      suffixes:
      - ts
    text/x-sass:
      delimiter: .
      suffixes:
      - sass
    text/x-scss:
      delimiter: .
      suffixes:
      - scss
    video/3gpp:
      delimiter: .
      suffixes:
      - 3gpp
      - 3gp
    video/mp4:
      delimiter: .
      suffixes:
      - mp4
    video/mpeg:
      delimiter: .
      suffixes:
      - mpg
      - mpeg
    video/ogg:
      delimiter: .
      suffixes:
      - ogv
    video/webm:
      delimiter: .
      suffixes:
      - webm
    video/x-msvideo:
      delimiter: .
      suffixes:
      - avi
  menus: {}
  minify:
    disableCSS: false
    disableHTML: false
    disableJS: false
    disableJSON: false
    disableSVG: false
    disableXML: false
    minifyOutput: false
    tdewolff:
      css:
        keepCSS2: true
        precision: 0
      html:
        keepComments: false
        keepConditionalComments: true
        keepDefaultAttrVals: true
        keepDocumentTags: true
        keepEndTags: true
        keepQuotes: false
        keepWhitespace: false
      js:
        keepVarNames: false
        precision: 0
        version: 2022
      json:
        keepNumbers: false
        precision: 0
      svg:
        keepComments: false
        precision: 0
      xml:
        keepWhitespace: false
  module:
    hugoVersion:
      extended: false
      max: ""
      min: ""
    imports: null
    mounts:
    - excludeFiles: null
      includeFiles: null
      lang: ""
      source: content
      target: content
    - excludeFiles: null
      includeFiles: null
      lang: ""
      source: data
      target: data
    - excludeFiles: null
      includeFiles: null
      lang: ""
      source: layouts
      target: layouts
    - excludeFiles: null
      includeFiles: null
      lang: ""
      source: i18n
      target: i18n
    - excludeFiles: null
      includeFiles: null
      lang: ""
      source: archetypes
      target: archetypes
    - excludeFiles: null
      includeFiles: null
      lang: ""
      source: assets
      target: assets
    - excludeFiles: null
      includeFiles: null
      lang: ""
      source: static
      target: static
    noProxy: none
    noVendor: ""
    params: null
    private: '*.*'
    proxy: direct
    replacements: null
    vendorClosest: false
    workspace: "off"
  newContentEditor: ""
  noBuildLock: false
  noChmod: false
  noTimes: false
  outputFormats:
    amp:
      baseName: index
      isHTML: true
      isPlainText: false
      mediaType: text/html
      name: amp
      noUgly: false
      notAlternative: false
      path: amp
      permalinkable: true
      protocol: ""
      rel: amphtml
      weight: 0
    calendar:
      baseName: index
      isHTML: false
      isPlainText: true
      mediaType: text/calendar
      name: calendar
      noUgly: false
      notAlternative: false
      path: ""
      permalinkable: false
      protocol: webcal://
      rel: alternate
      weight: 0
    css:
      baseName: styles
      isHTML: false
      isPlainText: true
      mediaType: text/css
      name: css
      noUgly: false
      notAlternative: true
      path: ""
      permalinkable: false
      protocol: ""
      rel: stylesheet
      weight: 0
    csv:
      baseName: index
      isHTML: false
      isPlainText: true
      mediaType: text/csv
      name: csv
      noUgly: false
      notAlternative: false
      path: ""
      permalinkable: false
      protocol: ""
      rel: alternate
      weight: 0
    html:
      baseName: index
      isHTML: true
      isPlainText: false
      mediaType: text/html
      name: html
      noUgly: false
      notAlternative: false
      path: ""
      permalinkable: true
      protocol: ""
      rel: canonical
      weight: 10
    json:
      baseName: index
      isHTML: false
      isPlainText: true
      mediaType: application/json
      name: json
      noUgly: false
      notAlternative: false
      path: ""
      permalinkable: false
      protocol: ""
      rel: alternate
      weight: 0
    markdown:
      baseName: index
      isHTML: false
      isPlainText: true
      mediaType: text/markdown
      name: markdown
      noUgly: false
      notAlternative: false
      path: ""
      permalinkable: false
      protocol: ""
      rel: alternate
      weight: 0
    robots:
      baseName: robots
      isHTML: false
      isPlainText: true
      mediaType: text/plain
      name: robots
      noUgly: false
      notAlternative: false
      path: ""
      permalinkable: false
      protocol: ""
      rel: alternate
      weight: 0
    rss:
      baseName: index
      isHTML: false
      isPlainText: false
      mediaType: application/rss+xml
      name: rss
      noUgly: true
      notAlternative: false
      path: ""
      permalinkable: false
      protocol: ""
      rel: alternate
      weight: 0
    sitemap:
      baseName: sitemap
      isHTML: false
      isPlainText: false
      mediaType: application/xml
      name: sitemap
      noUgly: true
      notAlternative: false
      path: ""
      permalinkable: false
      protocol: ""
      rel: sitemap
      weight: 0
    webappmanifest:
      baseName: manifest
      isHTML: false
      isPlainText: true
      mediaType: application/manifest+json
      name: webappmanifest
      noUgly: false
      notAlternative: true
      path: ""
      permalinkable: false
      protocol: ""
      rel: manifest
      weight: 0
  outputs:
    home:
    - html
    - rss
    page:
    - html
    rss:
    - rss
    section:
    - html
    - rss
    taxonomy:
    - html
    - rss
    term:
    - html
    - rss
  paginate: 10
  paginatePath: page
  panicOnWarning: false
  params: {}
  permalinks:
    page: {}
    section: {}
    taxonomy: {}
    term: {}
  pluralizeListTitles: true
  printI18nWarnings: false
  printPathWarnings: false
  printUnusedTemplates: false
  privacy:
    disqus:
      disable: false
    googleAnalytics:
      anonymizeIP: false
      disable: false
      respectDoNotTrack: false
      useSessionStorage: false
    instagram:
      disable: false
      simple: false
    twitter:
      disable: false
      enableDNT: false
      simple: false
    vimeo:
      disable: false
      enableDNT: false
      simple: false
    youTube:
      disable: false
      privacyEnhanced: false
  publishDir: public
  refLinksErrorLevel: ""
  refLinksNotFoundURL: ""
  related:
    includeNewer: false
    indices:
    - applyFilter: false
      cardinalityThreshold: 0
      name: keywords
      pattern: ""
      toLower: false
      type: basic
      weight: 100
    - applyFilter: false
      cardinalityThreshold: 0
      name: date
      pattern: ""
      toLower: false
      type: basic
      weight: 10
    - applyFilter: false
      cardinalityThreshold: 0
      name: tags
      pattern: ""
      toLower: false
      type: basic
      weight: 80
    threshold: 80
    toLower: false
  relativeURLs: false
  removePathAccents: false
  resourceDir: resources
  sectionPagesMenu: ""
  security:
    enableInlineShortcodes: false
    exec:
      allow:
      - ^(dart-)?sass(-embedded)?$
      - ^go$
      - ^npx$
      - ^postcss$
      osEnv:
      - (?i)^((HTTPS?|NO)_PROXY|PATH(EXT)?|APPDATA|TE?MP|TERM|GO\w+|(XDG_CONFIG_)?HOME|USERPROFILE|SSH_AUTH_SOCK|DISPLAY|LANG)$
    funcs:
      getenv:
      - ^HUGO_
      - ^CI$
    goTemplates:
      allowActionJSTmpl: false
    http:
      mediaTypes: null
      methods:
      - (?i)GET|POST
      urls:
      - .*
  server:
    headers: null
    redirects:
    - force: false
      from: '**'
      status: 404
      to: /404.html
  services:
    disqus:
      shortname: ""
    googleAnalytics:
      id: ""
    instagram:
      accessToken: ""
      disableInlineCSS: false
    rss:
      limit: -1
    twitter:
      disableInlineCSS: false
  sitemap:
    changeFreq: ""
    filename: sitemap.xml
    priority: -1
  social: null
  staticDir:
  - static
  staticDir0: null
  staticDir1: null
  staticDir2: null
  staticDir3: null
  staticDir4: null
  staticDir5: null
  staticDir6: null
  staticDir7: null
  staticDir8: null
  staticDir9: null
  staticDir10: null
  summaryLength: 70
  taxonomies:
    category: categories
    tag: tags
  templateMetrics: false
  templateMetricsHints: false
  theme: null
  themesDir: themes
  timeZone: ""
  timeout: 30s
  title: ""
  titleCaseStyle: AP
  uglyURLs: false
  workingDir: ""
config_helpers:
  mergeStrategy:
    build:
      _merge: none
    caches:
      _merge: none
    cascade:
      _merge: none
    deployment:
      _merge: none
    frontmatter:
      _merge: none
    imaging:
      _merge: none
    languages:
      _merge: none
      en:
        _merge: none
        menus:
          _merge: shallow
        params:
          _merge: deep
    markup:
      _merge: none
    mediatypes:
      _merge: shallow
    menus:
      _merge: shallow
    minify:
      _merge: none
    module:
      _merge: none
    outputformats:
      _merge: shallow
    outputs:
      _merge: none
    params:
      _merge: deep
    permalinks:
      _merge: none
    privacy:
      _merge: none
    related:
      _merge: none
    security:
      _merge: none
    server:
      _merge: none
    services:
      _merge: none
    sitemap:
      _merge: none
    taxonomies:
      _merge: none
output:
  layouts:
  - Example: Single page in "posts" section
    Kind: page
    OutputFormat: html
    Suffix: html
    Template Lookup Order:
    - layouts/posts/single.html.html
    - layouts/posts/single.html
    - layouts/_default/single.html.html
    - layouts/_default/single.html
  - Example: Base template for single page in "posts" section
    Kind: page
    OutputFormat: html
    Suffix: html
    Template Lookup Order:
    - layouts/posts/single-baseof.html.html
    - layouts/posts/baseof.html.html
    - layouts/posts/single-baseof.html
    - layouts/posts/baseof.html
    - layouts/_default/single-baseof.html.html
    - layouts/_default/baseof.html.html
    - layouts/_default/single-baseof.html
    - layouts/_default/baseof.html
  - Example: Single page in "posts" section with layout set to "demolayout"
    Kind: page
    OutputFormat: html
    Suffix: html
    Template Lookup Order:
    - layouts/posts/demolayout.html.html
    - layouts/posts/single.html.html
    - layouts/posts/demolayout.html
    - layouts/posts/single.html
    - layouts/_default/demolayout.html.html
    - layouts/_default/single.html.html
    - layouts/_default/demolayout.html
    - layouts/_default/single.html
  - Example: Base template for single page in "posts" section with layout set to "demolayout"
    Kind: page
    OutputFormat: html
    Suffix: html
    Template Lookup Order:
    - layouts/posts/demolayout-baseof.html.html
    - layouts/posts/single-baseof.html.html
    - layouts/posts/baseof.html.html
    - layouts/posts/demolayout-baseof.html
    - layouts/posts/single-baseof.html
    - layouts/posts/baseof.html
    - layouts/_default/demolayout-baseof.html.html
    - layouts/_default/single-baseof.html.html
    - layouts/_default/baseof.html.html
    - layouts/_default/demolayout-baseof.html
    - layouts/_default/single-baseof.html
    - layouts/_default/baseof.html
  - Example: AMP single page
    Kind: page
    OutputFormat: amp
    Suffix: html
    Template Lookup Order:
    - layouts/posts/single.amp.html
    - layouts/posts/single.html
    - layouts/_default/single.amp.html
    - layouts/_default/single.html
  - Example: AMP single page, French language
    Kind: page
    OutputFormat: html
    Suffix: html
    Template Lookup Order:
    - layouts/posts/single.fr.html.html
    - layouts/posts/single.html.html
    - layouts/posts/single.fr.html
    - layouts/posts/single.html
    - layouts/_default/single.fr.html.html
    - layouts/_default/single.html.html
    - layouts/_default/single.fr.html
    - layouts/_default/single.html
  - Example: Home page
    Kind: home
    OutputFormat: html
    Suffix: html
    Template Lookup Order:
    - layouts/index.html.html
    - layouts/home.html.html
    - layouts/list.html.html
    - layouts/index.html
    - layouts/home.html
    - layouts/list.html
    - layouts/_default/index.html.html
    - layouts/_default/home.html.html
    - layouts/_default/list.html.html
    - layouts/_default/index.html
    - layouts/_default/home.html
    - layouts/_default/list.html
  - Example: Base template for home page
    Kind: home
    OutputFormat: html
    Suffix: html
    Template Lookup Order:
    - layouts/index-baseof.html.html
    - layouts/home-baseof.html.html
    - layouts/list-baseof.html.html
    - layouts/baseof.html.html
    - layouts/index-baseof.html
    - layouts/home-baseof.html
    - layouts/list-baseof.html
    - layouts/baseof.html
    - layouts/_default/index-baseof.html.html
    - layouts/_default/home-baseof.html.html
    - layouts/_default/list-baseof.html.html
    - layouts/_default/baseof.html.html
    - layouts/_default/index-baseof.html
    - layouts/_default/home-baseof.html
    - layouts/_default/list-baseof.html
    - layouts/_default/baseof.html
  - Example: Home page with type set to "demotype"
    Kind: home
    OutputFormat: html
    Suffix: html
    Template Lookup Order:
    - layouts/demotype/index.html.html
    - layouts/demotype/home.html.html
    - layouts/demotype/list.html.html
    - layouts/demotype/index.html
    - layouts/demotype/home.html
    - layouts/demotype/list.html
    - layouts/index.html.html
    - layouts/home.html.html
    - layouts/list.html.html
    - layouts/index.html
    - layouts/home.html
    - layouts/list.html
    - layouts/_default/index.html.html
    - layouts/_default/home.html.html
    - layouts/_default/list.html.html
    - layouts/_default/index.html
    - layouts/_default/home.html
    - layouts/_default/list.html
  - Example: Base template for home page with type set to "demotype"
    Kind: home
    OutputFormat: html
    Suffix: html
    Template Lookup Order:
    - layouts/demotype/index-baseof.html.html
    - layouts/demotype/home-baseof.html.html
    - layouts/demotype/list-baseof.html.html
    - layouts/demotype/baseof.html.html
    - layouts/demotype/index-baseof.html
    - layouts/demotype/home-baseof.html
    - layouts/demotype/list-baseof.html
    - layouts/demotype/baseof.html
    - layouts/index-baseof.html.html
    - layouts/home-baseof.html.html
    - layouts/list-baseof.html.html
    - layouts/baseof.html.html
    - layouts/index-baseof.html
    - layouts/home-baseof.html
    - layouts/list-baseof.html
    - layouts/baseof.html
    - layouts/_default/index-baseof.html.html
    - layouts/_default/home-baseof.html.html
    - layouts/_default/list-baseof.html.html
    - layouts/_default/baseof.html.html
    - layouts/_default/index-baseof.html
    - layouts/_default/home-baseof.html
    - layouts/_default/list-baseof.html
    - layouts/_default/baseof.html
  - Example: Home page with layout set to "demolayout"
    Kind: home
    OutputFormat: html
    Suffix: html
    Template Lookup Order:
    - layouts/demolayout.html.html
    - layouts/index.html.html
    - layouts/home.html.html
    - layouts/list.html.html
    - layouts/demolayout.html
    - layouts/index.html
    - layouts/home.html
    - layouts/list.html
    - layouts/_default/demolayout.html.html
    - layouts/_default/index.html.html
    - layouts/_default/home.html.html
    - layouts/_default/list.html.html
    - layouts/_default/demolayout.html
    - layouts/_default/index.html
    - layouts/_default/home.html
    - layouts/_default/list.html
  - Example: AMP home, French language
    Kind: home
    OutputFormat: amp
    Suffix: html
    Template Lookup Order:
    - layouts/index.fr.amp.html
    - layouts/home.fr.amp.html
    - layouts/list.fr.amp.html
    - layouts/index.amp.html
    - layouts/home.amp.html
    - layouts/list.amp.html
    - layouts/index.fr.html
    - layouts/home.fr.html
    - layouts/list.fr.html
    - layouts/index.html
    - layouts/home.html
    - layouts/list.html
    - layouts/_default/index.fr.amp.html
    - layouts/_default/home.fr.amp.html
    - layouts/_default/list.fr.amp.html
    - layouts/_default/index.amp.html
    - layouts/_default/home.amp.html
    - layouts/_default/list.amp.html
    - layouts/_default/index.fr.html
    - layouts/_default/home.fr.html
    - layouts/_default/list.fr.html
    - layouts/_default/index.html
    - layouts/_default/home.html
    - layouts/_default/list.html
  - Example: JSON home
    Kind: home
    OutputFormat: json
    Suffix: json
    Template Lookup Order:
    - layouts/index.json.json
    - layouts/home.json.json
    - layouts/list.json.json
    - layouts/index.json
    - layouts/home.json
    - layouts/list.json
    - layouts/_default/index.json.json
    - layouts/_default/home.json.json
    - layouts/_default/list.json.json
    - layouts/_default/index.json
    - layouts/_default/home.json
    - layouts/_default/list.json
  - Example: RSS home
    Kind: home
    OutputFormat: rss
    Suffix: xml
    Template Lookup Order:
    - layouts/index.rss.xml
    - layouts/home.rss.xml
    - layouts/rss.xml
    - layouts/list.rss.xml
    - layouts/index.xml
    - layouts/home.xml
    - layouts/list.xml
    - layouts/_default/index.rss.xml
    - layouts/_default/home.rss.xml
    - layouts/_default/rss.xml
    - layouts/_default/list.rss.xml
    - layouts/_default/index.xml
    - layouts/_default/home.xml
    - layouts/_default/list.xml
    - layouts/_internal/_default/rss.xml
  - Example: Section list for "posts"
    Kind: section
    OutputFormat: html
    Suffix: html
    Template Lookup Order:
    - layouts/posts/posts.html.html
    - layouts/posts/section.html.html
    - layouts/posts/list.html.html
    - layouts/posts/posts.html
    - layouts/posts/section.html
    - layouts/posts/list.html
    - layouts/section/posts.html.html
    - layouts/section/section.html.html
    - layouts/section/list.html.html
    - layouts/section/posts.html
    - layouts/section/section.html
    - layouts/section/list.html
    - layouts/_default/posts.html.html
    - layouts/_default/section.html.html
    - layouts/_default/list.html.html
    - layouts/_default/posts.html
    - layouts/_default/section.html
    - layouts/_default/list.html
  - Example: Section list for "posts" with type set to "blog"
    Kind: section
    OutputFormat: html
    Suffix: html
    Template Lookup Order:
    - layouts/blog/posts.html.html
    - layouts/blog/section.html.html
    - layouts/blog/list.html.html
    - layouts/blog/posts.html
    - layouts/blog/section.html
    - layouts/blog/list.html
    - layouts/posts/posts.html.html
    - layouts/posts/section.html.html
    - layouts/posts/list.html.html
    - layouts/posts/posts.html
    - layouts/posts/section.html
    - layouts/posts/list.html
    - layouts/section/posts.html.html
    - layouts/section/section.html.html
    - layouts/section/list.html.html
    - layouts/section/posts.html
    - layouts/section/section.html
    - layouts/section/list.html
    - layouts/_default/posts.html.html
    - layouts/_default/section.html.html
    - layouts/_default/list.html.html
    - layouts/_default/posts.html
    - layouts/_default/section.html
    - layouts/_default/list.html
  - Example: Section list for "posts" with layout set to "demolayout"
    Kind: section
    OutputFormat: html
    Suffix: html
    Template Lookup Order:
    - layouts/posts/demolayout.html.html
    - layouts/posts/posts.html.html
    - layouts/posts/section.html.html
    - layouts/posts/list.html.html
    - layouts/posts/demolayout.html
    - layouts/posts/posts.html
    - layouts/posts/section.html
    - layouts/posts/list.html
    - layouts/section/demolayout.html.html
    - layouts/section/posts.html.html
    - layouts/section/section.html.html
    - layouts/section/list.html.html
    - layouts/section/demolayout.html
    - layouts/section/posts.html
    - layouts/section/section.html
    - layouts/section/list.html
    - layouts/_default/demolayout.html.html
    - layouts/_default/posts.html.html
    - layouts/_default/section.html.html
    - layouts/_default/list.html.html
    - layouts/_default/demolayout.html
    - layouts/_default/posts.html
    - layouts/_default/section.html
    - layouts/_default/list.html
  - Example: Section list for "posts"
    Kind: section
    OutputFormat: rss
    Suffix: xml
    Template Lookup Order:
    - layouts/posts/section.rss.xml
    - layouts/posts/rss.xml
    - layouts/posts/list.rss.xml
    - layouts/posts/section.xml
    - layouts/posts/list.xml
    - layouts/section/section.rss.xml
    - layouts/section/rss.xml
    - layouts/section/list.rss.xml
    - layouts/section/section.xml
    - layouts/section/list.xml
    - layouts/_default/section.rss.xml
    - layouts/_default/rss.xml
    - layouts/_default/list.rss.xml
    - layouts/_default/section.xml
    - layouts/_default/list.xml
    - layouts/_internal/_default/rss.xml
  - Example: Taxonomy list for "categories"
    Kind: taxonomy
    OutputFormat: html
    Suffix: html
    Template Lookup Order:
    - layouts/categories/category.terms.html.html
    - layouts/categories/terms.html.html
    - layouts/categories/taxonomy.html.html
    - layouts/categories/list.html.html
    - layouts/categories/category.terms.html
    - layouts/categories/terms.html
    - layouts/categories/taxonomy.html
    - layouts/categories/list.html
    - layouts/category/category.terms.html.html
    - layouts/category/terms.html.html
    - layouts/category/taxonomy.html.html
    - layouts/category/list.html.html
    - layouts/category/category.terms.html
    - layouts/category/terms.html
    - layouts/category/taxonomy.html
    - layouts/category/list.html
    - layouts/taxonomy/category.terms.html.html
    - layouts/taxonomy/terms.html.html
    - layouts/taxonomy/taxonomy.html.html
    - layouts/taxonomy/list.html.html
    - layouts/taxonomy/category.terms.html
    - layouts/taxonomy/terms.html
    - layouts/taxonomy/taxonomy.html
    - layouts/taxonomy/list.html
    - layouts/_default/category.terms.html.html
    - layouts/_default/terms.html.html
    - layouts/_default/taxonomy.html.html
    - layouts/_default/list.html.html
    - layouts/_default/category.terms.html
    - layouts/_default/terms.html
    - layouts/_default/taxonomy.html
    - layouts/_default/list.html
  - Example: Taxonomy list for "categories"
    Kind: taxonomy
    OutputFormat: rss
    Suffix: xml
    Template Lookup Order:
    - layouts/categories/category.terms.rss.xml
    - layouts/categories/terms.rss.xml
    - layouts/categories/taxonomy.rss.xml
    - layouts/categories/rss.xml
    - layouts/categories/list.rss.xml
    - layouts/categories/category.terms.xml
    - layouts/categories/terms.xml
    - layouts/categories/taxonomy.xml
    - layouts/categories/list.xml
    - layouts/category/category.terms.rss.xml
    - layouts/category/terms.rss.xml
    - layouts/category/taxonomy.rss.xml
    - layouts/category/rss.xml
    - layouts/category/list.rss.xml
    - layouts/category/category.terms.xml
    - layouts/category/terms.xml
    - layouts/category/taxonomy.xml
    - layouts/category/list.xml
    - layouts/taxonomy/category.terms.rss.xml
    - layouts/taxonomy/terms.rss.xml
    - layouts/taxonomy/taxonomy.rss.xml
    - layouts/taxonomy/rss.xml
    - layouts/taxonomy/list.rss.xml
    - layouts/taxonomy/category.terms.xml
    - layouts/taxonomy/terms.xml
    - layouts/taxonomy/taxonomy.xml
    - layouts/taxonomy/list.xml
    - layouts/_default/category.terms.rss.xml
    - layouts/_default/terms.rss.xml
    - layouts/_default/taxonomy.rss.xml
    - layouts/_default/rss.xml
    - layouts/_default/list.rss.xml
    - layouts/_default/category.terms.xml
    - layouts/_default/terms.xml
    - layouts/_default/taxonomy.xml
    - layouts/_default/list.xml
    - layouts/_internal/_default/rss.xml
  - Example: Term list for "categories"
    Kind: term
    OutputFormat: html
    Suffix: html
    Template Lookup Order:
    - layouts/categories/term.html.html
    - layouts/categories/category.html.html
    - layouts/categories/taxonomy.html.html
    - layouts/categories/list.html.html
    - layouts/categories/term.html
    - layouts/categories/category.html
    - layouts/categories/taxonomy.html
    - layouts/categories/list.html
    - layouts/term/term.html.html
    - layouts/term/category.html.html
    - layouts/term/taxonomy.html.html
    - layouts/term/list.html.html
    - layouts/term/term.html
    - layouts/term/category.html
    - layouts/term/taxonomy.html
    - layouts/term/list.html
    - layouts/taxonomy/term.html.html
    - layouts/taxonomy/category.html.html
    - layouts/taxonomy/taxonomy.html.html
    - layouts/taxonomy/list.html.html
    - layouts/taxonomy/term.html
    - layouts/taxonomy/category.html
    - layouts/taxonomy/taxonomy.html
    - layouts/taxonomy/list.html
    - layouts/category/term.html.html
    - layouts/category/category.html.html
    - layouts/category/taxonomy.html.html
    - layouts/category/list.html.html
    - layouts/category/term.html
    - layouts/category/category.html
    - layouts/category/taxonomy.html
    - layouts/category/list.html
    - layouts/_default/term.html.html
    - layouts/_default/category.html.html
    - layouts/_default/taxonomy.html.html
    - layouts/_default/list.html.html
    - layouts/_default/term.html
    - layouts/_default/category.html
    - layouts/_default/taxonomy.html
    - layouts/_default/list.html
  - Example: Term list for "categories"
    Kind: term
    OutputFormat: rss
    Suffix: xml
    Template Lookup Order:
    - layouts/categories/term.rss.xml
    - layouts/categories/category.rss.xml
    - layouts/categories/taxonomy.rss.xml
    - layouts/categories/rss.xml
    - layouts/categories/list.rss.xml
    - layouts/categories/term.xml
    - layouts/categories/category.xml
    - layouts/categories/taxonomy.xml
    - layouts/categories/list.xml
    - layouts/term/term.rss.xml
    - layouts/term/category.rss.xml
    - layouts/term/taxonomy.rss.xml
    - layouts/term/rss.xml
    - layouts/term/list.rss.xml
    - layouts/term/term.xml
    - layouts/term/category.xml
    - layouts/term/taxonomy.xml
    - layouts/term/list.xml
    - layouts/taxonomy/term.rss.xml
    - layouts/taxonomy/category.rss.xml
    - layouts/taxonomy/taxonomy.rss.xml
    - layouts/taxonomy/rss.xml
    - layouts/taxonomy/list.rss.xml
    - layouts/taxonomy/term.xml
    - layouts/taxonomy/category.xml
    - layouts/taxonomy/taxonomy.xml
    - layouts/taxonomy/list.xml
    - layouts/category/term.rss.xml
    - layouts/category/category.rss.xml
    - layouts/category/taxonomy.rss.xml
    - layouts/category/rss.xml
    - layouts/category/list.rss.xml
    - layouts/category/term.xml
    - layouts/category/category.xml
    - layouts/category/taxonomy.xml
    - layouts/category/list.xml
    - layouts/_default/term.rss.xml
    - layouts/_default/category.rss.xml
    - layouts/_default/taxonomy.rss.xml
    - layouts/_default/rss.xml
    - layouts/_default/list.rss.xml
    - layouts/_default/term.xml
    - layouts/_default/category.xml
    - layouts/_default/taxonomy.xml
    - layouts/_default/list.xml
    - layouts/_internal/_default/rss.xml
tpl:
  funcs:
    cast:
      ToFloat:
        Aliases:
        - float
        Args:
        - v
        Description: ToFloat converts v to a float.
        Examples:
        - - '{{ "1234" | float | printf "%T" }}'
          - float64
      ToInt:
        Aliases:
        - int
        Args:
        - v
        Description: ToInt converts v to an int.
        Examples:
        - - '{{ "1234" | int | printf "%T" }}'
          - int
      ToString:
        Aliases:
        - string
        Args:
        - v
        Description: ToString converts v to a string.
        Examples:
        - - '{{ 1234 | string | printf "%T" }}'
          - string
    collections:
      After:
        Aliases:
        - after
        Args:
        - "n"
        - l
        Description: After returns all the items after the first n items in list l.
        Examples: []
      Append:
        Aliases:
        - append
        Args:
        - args
        Description: "Append appends args up to the last one to the slice in the last
          argument.\nThis construct allows template constructs like this:\n\n\t{{
          $pages = $pages | append $p2 $p1 }}\n\nNote that with 2 arguments where
          both are slices of the same type,\nthe first slice will be appended to the
          second:\n\n\t{{ $pages = $pages | append .Site.RegularPages }}"
        Examples: []
      Apply:
        Aliases:
        - apply
        Args:
        - ctx
        - c
        - fname
        - args
        Description: Apply takes an array or slice c and returns a new slice with
          the function fname applied over it.
        Examples: []
      Complement:
        Aliases:
        - complement
        Args:
        - ls
        Description: "Complement gives the elements in the last element of ls that
          are not in\nany of the others.\n\nAll elements of ls must be slices or arrays
          of comparable types.\n\nThe reasoning behind this rather clumsy API is so
          we can do this in the templates:\n\n\t{{ $c := .Pages | complement $last4
          }}"
        Examples:
        - - '{{ slice "a" "b" "c" "d" "e" "f" | complement (slice "b" "c") (slice
            "d" "e") }}'
          - '[a f]'
      Delimit:
        Aliases:
        - delimit
        Args:
        - ctx
        - l
        - sep
        - last
        Description: |-
          Delimit takes a given list l and returns a string delimited by sep.
          If last is passed to the function, it will be used as the final delimiter.
        Examples:
        - - '{{ delimit (slice "A" "B" "C") ", " " and " }}'
          - A, B and C
      Dictionary:
        Aliases:
        - dict
        Args:
        - values
        Description: |-
          Dictionary creates a new map from the given parameters by
          treating values as key-value pairs.  The number of values must be even.
          The keys can be string slices, which will create the needed nested structure.
        Examples: []
      EchoParam:
        Aliases:
        - echoParam
        Args:
        - c
        - k
        Description: |-
          EchoParam returns a the value in the collection c with key k if is set; otherwise, it returns an
          empty string.
        Examples:
        - - '{{ echoParam .Params "langCode" }}'
          - en
      First:
        Aliases:
        - first
        Args:
        - limit
        - l
        Description: First returns the first limit items in list l.
        Examples: []
      Group:
        Aliases:
        - group
        Args:
        - key
        - items
        Description: |-
          Group groups a set of items by the given key.
          This is currently only supported for Pages.
        Examples: []
      In:
        Aliases:
        - in
        Args:
        - l
        - v
        Description: In returns whether v is in the list l.  l may be an array or
          slice.
        Examples:
        - - '{{ if in "this string contains a substring" "substring" }}Substring found!{{
            end }}'
          - Substring found!
      Index:
        Aliases:
        - index
        Args:
        - item
        - args
        Description: |-
          Index returns the result of indexing its first argument by the following
          arguments. Thus "index x 1 2 3" is, in Go syntax, x[1][2][3]. Each
          indexed item must be a map, slice, or array.

          Adapted from Go stdlib src/text/template/funcs.go.

          We deviate from the stdlib mostly because of https://github.com/golang/go/issues/14751.
        Examples: []
      Intersect:
        Aliases:
        - intersect
        Args:
        - l1
        - l2
        Description: |-
          Intersect returns the common elements in the given sets, l1 and l2.  l1 and
          l2 must be of the same type and may be either arrays or slices.
        Examples: []
      IsSet:
        Aliases:
        - isSet
        - isset
        Args:
        - c
        - key
        Description: |-
          IsSet returns whether a given array, channel, slice, or map in c has the given key
          defined.
        Examples: []
      KeyVals:
        Aliases:
        - keyVals
        Args:
        - key
        - values
        Description: KeyVals creates a key and values wrapper.
        Examples:
        - - '{{ keyVals "key" "a" "b" }}'
          - 'key: [a b]'
      Last:
        Aliases:
        - last
        Args:
        - limit
        - l
        Description: Last returns the last limit items in the list l.
        Examples: []
      Merge:
        Aliases:
        - merge
        Args:
        - params
        Description: |-
          Merge creates a copy of the final parameter in params and merges the preceding
          parameters into it in reverse order.

          Currently only maps are supported. Key handling is case insensitive.
        Examples:
        - - '{{ dict "title" "Hugo Rocks!" | collections.Merge (dict "title" "Default
            Title" "description" "Yes, Hugo Rocks!") | sort }}'
          - '[Yes, Hugo Rocks! Hugo Rocks!]'
        - - '{{ merge (dict "title" "Default Title" "description" "Yes, Hugo Rocks!")
            (dict "title" "Hugo Rocks!") | sort }}'
          - '[Yes, Hugo Rocks! Hugo Rocks!]'
        - - '{{ merge (dict "title" "Default Title" "description" "Yes, Hugo Rocks!")
            (dict "title" "Hugo Rocks!") (dict "extra" "For reals!") | sort }}'
          - '[Yes, Hugo Rocks! For reals! Hugo Rocks!]'
      NewScratch:
        Aliases:
        - newScratch
        Args: null
        Description: |-
          NewScratch creates a new Scratch which can be used to store values in a
          thread safe way.
        Examples:
        - - '{{ $scratch := newScratch }}{{ $scratch.Add "b" 2 }}{{ $scratch.Add "b"
            2 }}{{ $scratch.Get "b" }}'
          - "4"
      Querify:
        Aliases:
        - querify
        Args:
        - params
        Description: Querify encodes the given params in URL-encoded form ("bar=baz&foo=quux")
          sorted by key.
        Examples:
        - - '{{ (querify "foo" 1 "bar" 2 "baz" "with spaces" "qux" "this&that=those")
            | safeHTML }}'
          - bar=2&baz=with+spaces&foo=1&qux=this%26that%3Dthose
        - - <a href="https://www.google.com?{{ (querify "q" "test" "page" 3) | safeURL
            }}">Search</a>
          - <a href="https://www.google.com?page=3&amp;q=test">Search</a>
        - - '{{ slice "foo" 1 "bar" 2 | querify | safeHTML }}'
          - bar=2&foo=1
      Reverse:
        Aliases: null
        Args: null
        Description: ""
        Examples: null
      Seq:
        Aliases:
        - seq
        Args:
        - args
        Description: "Seq creates a sequence of integers from args. It's named and
          used as GNU's seq.\n\nExamples:\n\n\t3 => 1, 2, 3\n\t1 2 4 => 1, 3\n\t-3
          => -1, -2, -3\n\t1 4 => 1, 2, 3, 4\n\t1 -2 => 1, 0, -1, -2"
        Examples:
        - - '{{ seq 3 }}'
          - '[1 2 3]'
      Shuffle:
        Aliases:
        - shuffle
        Args:
        - l
        Description: Shuffle returns list l in a randomised order.
        Examples: []
      Slice:
        Aliases:
        - slice
        Args:
        - args
        Description: Slice returns a slice of all passed arguments.
        Examples:
        - - '{{ slice "B" "C" "A" | sort }}'
          - '[A B C]'
      Sort:
        Aliases:
        - sort
        Args:
        - ctx
        - l
        - args
        Description: Sort returns a sorted copy of the list l.
        Examples: []
      SymDiff:
        Aliases:
        - symdiff
        Args:
        - s2
        - s1
        Description: |-
          SymDiff returns the symmetric difference of s1 and s2.
          Arguments must be either a slice or an array of comparable types.
        Examples:
        - - '{{ slice 1 2 3 | symdiff (slice 3 4) }}'
          - '[1 2 4]'
      Union:
        Aliases:
        - union
        Args:
        - l1
        - l2
        Description: |-
          Union returns the union of the given sets, l1 and l2. l1 and
          l2 must be of the same type and may be either arrays or slices.
          If l1 and l2 aren't of the same type then l1 will be returned.
          If either l1 or l2 is nil then the non-nil list will be returned.
        Examples:
        - - '{{ union (slice 1 2 3) (slice 3 4 5) }}'
          - '[1 2 3 4 5]'
      Uniq:
        Aliases:
        - uniq
        Args:
        - l
        Description: Uniq returns a new list with duplicate elements in the list l
          removed.
        Examples:
        - - '{{ slice 1 2 3 2 | uniq }}'
          - '[1 2 3]'
      Where:
        Aliases:
        - where
        Args:
        - ctx
        - c
        - key
        - args
        Description: Where returns a filtered subset of collection c.
        Examples: []
    compare:
      Conditional:
        Aliases:
        - cond
        Args:
        - cond
        - v1
        - v2
        Description: |-
          Conditional can be used as a ternary operator.

          It returns v1 if cond is true, else v2.
        Examples:
        - - '{{ cond (eq (add 2 2) 4) "2+2 is 4" "what?" | safeHTML }}'
          - 2+2 is 4
      Default:
        Aliases:
        - default
        Args:
        - defaultv
        - givenv
        Description: |-
          Default checks whether a givenv is set and returns the default value defaultv if it
          is not.  "Set" in this context means non-zero for numeric types and times;
          non-zero length for strings, arrays, slices, and maps;
          any boolean or struct value; or non-nil for any other types.
        Examples:
        - - '{{ "Hugo Rocks!" | default "Hugo Rules!" }}'
          - Hugo Rocks!
        - - '{{ "" | default "Hugo Rules!" }}'
          - Hugo Rules!
      Eq:
        Aliases:
        - eq
        Args:
        - first
        - others
        Description: Eq returns the boolean truth of arg1 == arg2 || arg1 == arg3
          || arg1 == arg4.
        Examples:
        - - '{{ if eq .Section "blog" }}current-section{{ end }}'
          - current-section
      Ge:
        Aliases:
        - ge
        Args:
        - first
        - others
        Description: Ge returns the boolean truth of arg1 >= arg2 && arg1 >= arg3
          && arg1 >= arg4.
        Examples:
        - - '{{ if ge hugo.Version "0.80" }}Reasonable new Hugo version!{{ end }}'
          - Reasonable new Hugo version!
      Gt:
        Aliases:
        - gt
        Args:
        - first
        - others
        Description: Gt returns the boolean truth of arg1 > arg2 && arg1 > arg3 &&
          arg1 > arg4.
        Examples: []
      Le:
        Aliases:
        - le
        Args:
        - first
        - others
        Description: Le returns the boolean truth of arg1 <= arg2 && arg1 <= arg3
          && arg1 <= arg4.
        Examples: []
      Lt:
        Aliases:
        - lt
        Args:
        - first
        - others
        Description: Lt returns the boolean truth of arg1 < arg2 && arg1 < arg3 &&
          arg1 < arg4.
        Examples: []
      LtCollate:
        Aliases: null
        Args: null
        Description: ""
        Examples: null
      Ne:
        Aliases:
        - ne
        Args:
        - first
        - others
        Description: Ne returns the boolean truth of arg1 != arg2 && arg1 != arg3
          && arg1 != arg4.
        Examples: []
    crypto:
      FNV32a:
        Aliases: null
        Args:
        - v
        Description: |-
          FNV32a hashes v using fnv32a algorithm.
          <docsmeta>{"newIn": "0.98.0" }</docsmeta>
        Examples:
        - - '{{ crypto.FNV32a "Hugo Rocks!!" }}'
          - "1515779328"
      HMAC:
        Aliases:
        - hmac
        Args:
        - h
        - k
        - m
        - e
        Description: HMAC returns a cryptographic hash that uses a key to sign a message.
        Examples:
        - - '{{ hmac "sha256" "Secret key" "Hello world, gophers!" }}'
          - b6d11b6c53830b9d87036272ca9fe9d19306b8f9d8aa07b15da27d89e6e34f40
      MD5:
        Aliases:
        - md5
        Args:
        - v
        Description: MD5 hashes the v and returns its MD5 checksum.
        Examples:
        - - '{{ md5 "Hello world, gophers!" }}'
          - b3029f756f98f79e7f1b7f1d1f0dd53b
        - - '{{ crypto.MD5 "Hello world, gophers!" }}'
          - b3029f756f98f79e7f1b7f1d1f0dd53b
      SHA1:
        Aliases:
        - sha1
        Args:
        - v
        Description: SHA1 hashes v and returns its SHA1 checksum.
        Examples:
        - - '{{ sha1 "Hello world, gophers!" }}'
          - c8b5b0e33d408246e30f53e32b8f7627a7a649d4
      SHA256:
        Aliases:
        - sha256
        Args:
        - v
        Description: SHA256 hashes v and returns its SHA256 checksum.
        Examples:
        - - '{{ sha256 "Hello world, gophers!" }}'
          - 6ec43b78da9669f50e4e422575c54bf87536954ccd58280219c393f2ce352b46
    css:
      Quoted:
        Aliases: null
        Args: null
        Description: ""
        Examples: null
      Unquoted:
        Aliases: null
        Args: null
        Description: ""
        Examples: null
    data:
      GetCSV:
        Aliases:
        - getCSV
        Args:
        - sep
        - args
        Description: |-
          GetCSV expects the separator sep and one or n-parts of a URL to a resource which
          can either be a local or a remote one.
          The data separator can be a comma, semi-colon, pipe, etc, but only one character.
          If you provide multiple parts for the URL they will be joined together to the final URL.
          GetCSV returns nil or a slice slice to use in a short code.
        Examples: []
      GetJSON:
        Aliases:
        - getJSON
        Args:
        - args
        Description: |-
          GetJSON expects one or n-parts of a URL in args to a resource which can either be a local or a remote one.
          If you provide multiple parts they will be joined together to the final URL.
          GetJSON returns nil or parsed JSON to use in a short code.
        Examples: []
    debug:
      Dump:
        Aliases: null
        Args:
        - val
        Description: |-
          Dump returns a object dump of val as a string.
          Note that not every value passed to Dump will print so nicely, but
          we'll improve on that.

          We recommend using the "go" Chroma lexer to format the output
          nicely.

          Also note that the output from Dump may change from Hugo version to the next,
          so don't depend on a specific output.
        Examples:
        - - |-
            {{ $m := newScratch }}
            {{ $m.Set "Hugo" "Rocks!" }}
            {{ $m.Values | debug.Dump | safeHTML }}
          - |-
            map[string]interface {}{
              "Hugo": "Rocks!",
            }
      VisualizeSpaces:
        Aliases: null
        Args: null
        Description: ""
        Examples: null
    diagrams:
      Goat:
        Aliases: null
        Args: null
        Description: ""
        Examples: null
    encoding:
      Base64Decode:
        Aliases:
        - base64Decode
        Args:
        - content
        Description: Base64Decode returns the base64 decoding of the given content.
        Examples:
        - - '{{ "SGVsbG8gd29ybGQ=" | base64Decode }}'
          - Hello world
        - - '{{ 42 | base64Encode | base64Decode }}'
          - "42"
      Base64Encode:
        Aliases:
        - base64Encode
        Args:
        - content
        Description: Base64Encode returns the base64 encoding of the given content.
        Examples:
        - - '{{ "Hello world" | base64Encode }}'
          - SGVsbG8gd29ybGQ=
      Jsonify:
        Aliases:
        - jsonify
        Args:
        - args
        Description: |-
          Jsonify encodes a given object to JSON.  To pretty print the JSON, pass a map
          or dictionary of options as the first value in args.  Supported options are
          "prefix" and "indent".  Each JSON element in the output will begin on a new
          line beginning with prefix followed by one or more copies of indent according
          to the indentation nesting.
        Examples:
        - - '{{ (slice "A" "B" "C") | jsonify }}'
          - '["A","B","C"]'
        - - '{{ (slice "A" "B" "C") | jsonify (dict "indent" "  ") }}'
          - |-
            [
              "A",
              "B",
              "C"
            ]
    fmt:
      Errorf:
        Aliases:
        - errorf
        Args:
        - format
        - args
        Description: |-
          Errorf formats args according to a format specifier and logs an ERROR.
          It returns an empty string.
        Examples:
        - - '{{ errorf "%s." "failed" }}'
          - ""
      Erroridf:
        Aliases:
        - erroridf
        Args:
        - id
        - format
        - args
        Description: |-
          Erroridf formats args according to a format specifier and logs an ERROR and
          an information text that the error with the given id can be suppressed in config.
          It returns an empty string.
        Examples:
        - - '{{ erroridf "my-err-id" "%s." "failed" }}'
          - ""
      Errormf:
        Aliases: null
        Args: null
        Description: ""
        Examples: null
      Print:
        Aliases:
        - print
        Args:
        - args
        Description: Print returns a string representation of args.
        Examples:
        - - '{{ print "works!" }}'
          - works!
      Printf:
        Aliases:
        - printf
        Args:
        - format
        - args
        Description: Printf returns string representation of args formatted with the
          layouut in format.
        Examples:
        - - '{{ printf "%s!" "works" }}'
          - works!
      Println:
        Aliases:
        - println
        Args:
        - args
        Description: Println returns string representation of args  ending with a
          newline.
        Examples:
        - - '{{ println "works!" }}'
          - |
            works!
      Warnf:
        Aliases:
        - warnf
        Args:
        - format
        - args
        Description: |-
          Warnf formats args according to a format specifier and logs a WARNING.
          It returns an empty string.
        Examples:
        - - '{{ warnf "%s." "warning" }}'
          - ""
      Warnmf:
        Aliases: null
        Args: null
        Description: ""
        Examples: null
    hugo:
      Deps:
        Aliases: null
        Args: null
        Description: ""
        Examples: null
      Generator:
        Aliases: null
        Args: null
        Description: ""
        Examples: null
      IsExtended:
        Aliases: null
        Args: null
        Description: ""
        Examples: null
      IsProduction:
        Aliases: null
        Args: null
        Description: ""
        Examples: null
      Version:
        Aliases: null
        Args: null
        Description: ""
        Examples: null
      WorkingDir:
        Aliases: null
        Args: null
        Description: ""
        Examples: null
    images:
      Brightness:
        Aliases: null
        Args: null
        Description: ""
        Examples: null
      ColorBalance:
        Aliases: null
        Args: null
        Description: ""
        Examples: null
      Colorize:
        Aliases: null
        Args: null
        Description: ""
        Examples: null
      Config:
        Aliases:
        - imageConfig
        Args:
        - path
        Description: |-
          Config returns the image.Config for the specified path relative to the
          working directory.
        Examples: []
      Contrast:
        Aliases: null
        Args: null
        Description: ""
        Examples: null
      Filter:
        Aliases: null
        Args: null
        Description: ""
        Examples: null
      Gamma:
        Aliases: null
        Args: null
        Description: ""
        Examples: null
      GaussianBlur:
        Aliases: null
        Args: null
        Description: ""
        Examples: null
      Grayscale:
        Aliases: null
        Args: null
        Description: ""
        Examples: null
      Hue:
        Aliases: null
        Args: null
        Description: ""
        Examples: null
      Invert:
        Aliases: null
        Args: null
        Description: ""
        Examples: null
      Opacity:
        Aliases: null
        Args: null
        Description: ""
        Examples: null
      Overlay:
        Aliases: null
        Args: null
        Description: ""
        Examples: null
      Pixelate:
        Aliases: null
        Args: null
        Description: ""
        Examples: null
      Process:
        Aliases: null
        Args: null
        Description: ""
        Examples: null
      Saturation:
        Aliases: null
        Args: null
        Description: ""
        Examples: null
      Sepia:
        Aliases: null
        Args: null
        Description: ""
        Examples: null
      Sigmoid:
        Aliases: null
        Args: null
        Description: ""
        Examples: null
      Text:
        Aliases: null
        Args: null
        Description: ""
        Examples: null
      UnsharpMask:
        Aliases: null
        Args: null
        Description: ""
        Examples: null
    inflect:
      Humanize:
        Aliases:
        - humanize
        Args:
        - v
        Description: |-
          Humanize returns the humanized form of v.

          If v is either an integer or a string containing an integer
          value, the behavior is to add the appropriate ordinal.
        Examples:
        - - '{{ humanize "my-first-post" }}'
          - My first post
        - - '{{ humanize "myCamelPost" }}'
          - My camel post
        - - '{{ humanize "52" }}'
          - 52nd
        - - '{{ humanize 103 }}'
          - 103rd
      Pluralize:
        Aliases:
        - pluralize
        Args:
        - v
        Description: Pluralize returns the plural form of the single word in v.
        Examples:
        - - '{{ "cat" | pluralize }}'
          - cats
      Singularize:
        Aliases:
        - singularize
        Args:
        - v
        Description: Singularize returns the singular form of a single word in v.
        Examples:
        - - '{{ "cats" | singularize }}'
          - cat
    js:
      Build:
        Aliases: null
        Args: null
        Description: ""
        Examples: null
    lang:
      FormatAccounting:
        Aliases: null
        Args:
        - precision
        - currency
        - number
        Description: |-
          FormatAccounting returns the currency representation of number for the given currency and precision
          for the current language in accounting notation.

          The return value is formatted with at least two decimal places.
        Examples:
        - - '{{ 512.5032 | lang.FormatAccounting 2 "NOK" }}'
          - NOK512.50
      FormatCurrency:
        Aliases: null
        Args:
        - precision
        - currency
        - number
        Description: |-
          FormatCurrency returns the currency representation of number for the given currency and precision
          for the current language.

          The return value is formatted with at least two decimal places.
        Examples:
        - - '{{ 512.5032 | lang.FormatCurrency 2 "USD" }}'
          - $512.50
      FormatNumber:
        Aliases: null
        Args:
        - precision
        - number
        Description: FormatNumber formats number with the given precision for the
          current language.
        Examples:
        - - '{{ 512.5032 | lang.FormatNumber 2 }}'
          - "512.50"
      FormatNumberCustom:
        Aliases: null
        Args:
        - precision
        - number
        - options
        Description: |-
          FormatNumberCustom formats a number with the given precision. The first
          options parameter is a space-delimited string of characters to represent
          negativity, the decimal point, and grouping. The default value is `- . ,`.
          The second options parameter defines an alternate delimiting character.

          Note that numbers are rounded up at 5 or greater.
          So, with precision set to 0, 1.5 becomes `2`, and 1.4 becomes `1`.

          For a simpler function that adapts to the current language, see FormatNumber.
        Examples:
        - - '{{ lang.FormatNumberCustom 2 12345.6789 }}'
          - 12,345.68
        - - '{{ lang.FormatNumberCustom 2 12345.6789 "- , ." }}'
          - 12.345,68
        - - '{{ lang.FormatNumberCustom 6 -12345.6789 "- ." }}'
          - "-12345.678900"
        - - '{{ lang.FormatNumberCustom 0 -12345.6789 "- . ," }}'
          - -12,346
        - - '{{ lang.FormatNumberCustom 0 -12345.6789 "-|.| " "|" }}'
          - -12 346
        - - '{{ -98765.4321 | lang.FormatNumberCustom 2 }}'
          - -98,765.43
      FormatPercent:
        Aliases: null
        Args:
        - precision
        - number
        Description: |-
          FormatPercent formats number with the given precision for the current language.
          Note that the number is assumed to be a percentage.
        Examples:
        - - '{{ 512.5032 | lang.FormatPercent 2 }}'
          - 512.50%
      Merge:
        Aliases: null
        Args: null
        Description: ""
        Examples: null
      NumFmt:
        Aliases: null
        Args: null
        Description: ""
        Examples: null
      Translate:
        Aliases:
        - i18n
        - T
        Args:
        - ctx
        - id
        - args
        Description: Translate returns a translated string for id.
        Examples: []
    math:
      Abs:
        Aliases: null
        Args:
        - "n"
        Description: Abs returns the absolute value of n.
        Examples:
        - - '{{ math.Abs -2.1 }}'
          - "2.1"
      Add:
        Aliases:
        - add
        Args:
        - inputs
        Description: Add adds the multivalued addends n1 and n2 or more values.
        Examples:
        - - '{{ add 1 2 }}'
          - "3"
      Ceil:
        Aliases: null
        Args:
        - "n"
        Description: Ceil returns the least integer value greater than or equal to
          n.
        Examples:
        - - '{{ math.Ceil 2.1 }}'
          - "3"
      Counter:
        Aliases: null
        Args: null
        Description: ""
        Examples: null
      Div:
        Aliases:
        - div
        Args:
        - inputs
        Description: Div divides n1 by n2.
        Examples:
        - - '{{ div 6 3 }}'
          - "2"
      Floor:
        Aliases: null
        Args:
        - "n"
        Description: Floor returns the greatest integer value less than or equal to
          n.
        Examples:
        - - '{{ math.Floor 1.9 }}'
          - "1"
      Log:
        Aliases: null
        Args:
        - "n"
        Description: Log returns the natural logarithm of the number n.
        Examples:
        - - '{{ math.Log 1 }}'
          - "0"
      Max:
        Aliases: null
        Args:
        - inputs
        Description: Max returns the greater of all numbers in inputs. Any slices
          in inputs are flattened.
        Examples:
        - - '{{ math.Max 1 2 }}'
          - "2"
      Min:
        Aliases: null
        Args:
        - inputs
        Description: Min returns the smaller of all numbers in inputs. Any slices
          in inputs are flattened.
        Examples:
        - - '{{ math.Min 1 2 }}'
          - "1"
      Mod:
        Aliases:
        - mod
        Args:
        - n1
        - n2
        Description: Mod returns n1 % n2.
        Examples:
        - - '{{ mod 15 3 }}'
          - "0"
      ModBool:
        Aliases:
        - modBool
        Args:
        - n1
        - n2
        Description: ModBool returns the boolean of n1 % n2.  If n1 % n2 == 0, return
          true.
        Examples:
        - - '{{ modBool 15 3 }}'
          - "true"
      Mul:
        Aliases:
        - mul
        Args:
        - inputs
        Description: Mul multiplies the multivalued numbers n1 and n2 or more values.
        Examples:
        - - '{{ mul 2 3 }}'
          - "6"
      Pow:
        Aliases:
        - pow
        Args:
        - n1
        - n2
        Description: Pow returns n1 raised to the power of n2.
        Examples:
        - - '{{ math.Pow 2 3 }}'
          - "8"
      Product:
        Aliases: null
        Args: null
        Description: ""
        Examples: null
      Round:
        Aliases: null
        Args:
        - "n"
        Description: Round returns the integer nearest to n, rounding half away from
          zero.
        Examples:
        - - '{{ math.Round 1.5 }}'
          - "2"
      Sqrt:
        Aliases: null
        Args:
        - "n"
        Description: Sqrt returns the square root of the number n.
        Examples:
        - - '{{ math.Sqrt 81 }}'
          - "9"
      Sub:
        Aliases:
        - sub
        Args:
        - inputs
        Description: Sub subtracts multivalued.
        Examples:
        - - '{{ sub 3 2 }}'
          - "1"
      Sum:
        Aliases: null
        Args: null
        Description: ""
        Examples: null
    openapi3:
      Unmarshal:
        Aliases: null
        Args: null
        Description: ""
        Examples: []
    os:
      FileExists:
        Aliases:
        - fileExists
        Args:
        - i
        Description: FileExists checks whether a file exists under the given path.
        Examples:
        - - '{{ fileExists "foo.txt" }}'
          - "false"
      Getenv:
        Aliases:
        - getenv
        Args:
        - key
        Description: |-
          Getenv retrieves the value of the environment variable named by the key.
          It returns the value, which will be empty if the variable is not present.
        Examples: []
      ReadDir:
        Aliases:
        - readDir
        Args:
        - i
        Description: ReadDir lists the directory contents relative to the configured
          WorkingDir.
        Examples:
        - - '{{ range (readDir "files") }}{{ .Name }}{{ end }}'
          - README.txt
      ReadFile:
        Aliases:
        - readFile
        Args:
        - i
        Description: |-
          ReadFile reads the file named by filename relative to the configured WorkingDir.
          It returns the contents as a string.
          There is an upper size limit set at 1 megabytes.
        Examples:
        - - '{{ readFile "files/README.txt" }}'
          - Hugo Rocks!
      Stat:
        Aliases: null
        Args: null
        Description: ""
        Examples: null
    partials:
      Include:
        Aliases:
        - partial
        Args:
        - ctx
        - name
        - contextList
        Description: |-
          Include executes the named partial.
          If the partial contains a return statement, that value will be returned.
          Else, the rendered output will be returned:
          A string if the partial is a text/template, or template.HTML when html/template.
          Note that ctx is provided by Hugo, not the end user.
        Examples:
        - - '{{ partial "header.html" . }}'
          - <title>Hugo Rocks!</title>
      IncludeCached:
        Aliases:
        - partialCached
        Args:
        - ctx
        - name
        - context
        - variants
        Description: |-
          IncludeCached executes and caches partial templates.  The cache is created with name+variants as the key.
          Note that ctx is provided by Hugo, not the end user.
        Examples: []
    path:
      Base:
        Aliases: null
        Args: null
        Description: ""
        Examples: null
      BaseName:
        Aliases: null
        Args: null
        Description: ""
        Examples: null
      Clean:
        Aliases: null
        Args: null
        Description: ""
        Examples: null
      Dir:
        Aliases: null
        Args: null
        Description: ""
        Examples: null
      Ext:
        Aliases: null
        Args: null
        Description: ""
        Examples: null
      Join:
        Aliases: null
        Args:
        - elements
        Description: |-
          Join joins any number of path elements into a single path, adding a
          separating slash if necessary. All the input
          path elements are passed into filepath.ToSlash converting any Windows slashes
          to forward slashes.
          The result is Cleaned; in particular,
          all empty strings are ignored.
        Examples:
        - - '{{ slice "my/path" "filename.txt" | path.Join }}'
          - my/path/filename.txt
        - - '{{ path.Join "my" "path" "filename.txt" }}'
          - my/path/filename.txt
        - - '{{ "my/path/filename.txt" | path.Ext }}'
          - .txt
        - - '{{ "my/path/filename.txt" | path.Base }}'
          - filename.txt
        - - '{{ "my/path/filename.txt" | path.Dir }}'
          - my/path
      Split:
        Aliases: null
        Args:
        - path
        Description: |-
          Split splits path immediately following the final slash,
          separating it into a directory and file name component.
          If there is no slash in path, Split returns an empty dir and
          file set to path.
          The input path is passed into filepath.ToSlash converting any Windows slashes
          to forward slashes.
          The returned values have the property that path = dir+file.
        Examples:
        - - '{{ "/my/path/filename.txt" | path.Split }}'
          - /my/path/|filename.txt
        - - '{{ "/my/path/filename.txt" | path.Split }}'
          - /my/path/|filename.txt
    reflect:
      IsMap:
        Aliases: null
        Args:
        - v
        Description: IsMap reports whether v is a map.
        Examples:
        - - '{{ if reflect.IsMap (dict "a" 1) }}Map{{ end }}'
          - Map
      IsSlice:
        Aliases: null
        Args:
        - v
        Description: IsSlice reports whether v is a slice.
        Examples:
        - - '{{ if reflect.IsSlice (slice 1 2 3) }}Slice{{ end }}'
          - Slice
    resources:
      Babel:
        Aliases:
        - babel
        Args:
        - args
        Description: Babel processes the given Resource with Babel.
        Examples: []
      ByType:
        Aliases: null
        Args: null
        Description: ""
        Examples: null
      Concat:
        Aliases: null
        Args: null
        Description: ""
        Examples: null
      Copy:
        Aliases: null
        Args: null
        Description: ""
        Examples: null
      ExecuteAsTemplate:
        Aliases: null
        Args: null
        Description: ""
        Examples: null
      Fingerprint:
        Aliases:
        - fingerprint
        Args:
        - args
        Description: |-
          Fingerprint transforms the given Resource with a MD5 hash of the content in
          the RelPermalink and Permalink.
        Examples: []
      FromString:
        Aliases: null
        Args: null
        Description: ""
        Examples: null
      Get:
        Aliases: null
        Args:
        - filename
        Description: |-
          Get locates the filename given in Hugo's assets filesystem
          and creates a Resource object that can be used for further transformations.
        Examples: []
      GetMatch:
        Aliases: null
        Args: null
        Description: ""
        Examples: null
      GetRemote:
        Aliases: null
        Args:
        - args
        Description: |-
          GetRemote gets the URL (via HTTP(s)) in the first argument in args and creates Resource object that can be used for
          further transformations.

          A second argument may be provided with an option map.

          Note: This method does not return any error as a second return value,
          for any error situations the error can be checked in .Err.
        Examples: []
      Match:
        Aliases: null
        Args: null
        Description: ""
        Examples: null
      Minify:
        Aliases:
        - minify
        Args:
        - r
        Description: |-
          Minify minifies the given Resource using the MediaType to pick the correct
          minifier.
        Examples: []
      PostCSS:
        Aliases:
        - postCSS
        Args:
        - args
        Description: PostCSS processes the given Resource with PostCSS
        Examples: []
      PostProcess:
        Aliases: null
        Args: null
        Description: ""
        Examples: null
      ToCSS:
        Aliases:
        - toCSS
        Args:
        - args
        Description: |-
          ToCSS converts the given Resource to CSS. You can optional provide an Options object
          as second argument. As an option, you can e.g. specify e.g. the target path (string)
          for the converted CSS resource.
        Examples: []
    safe:
      CSS:
        Aliases:
        - safeCSS
        Args:
        - s
        Description: CSS returns the string s as html/template CSS content.
        Examples:
        - - '{{ "Bat&Man" | safeCSS | safeCSS }}'
          - Bat&amp;Man
      HTML:
        Aliases:
        - safeHTML
        Args:
        - s
        Description: HTML returns the string s as html/template HTML content.
        Examples:
        - - '{{ "Bat&Man" | safeHTML | safeHTML }}'
          - Bat&Man
        - - '{{ "Bat&Man" | safeHTML }}'
          - Bat&Man
      HTMLAttr:
        Aliases:
        - safeHTMLAttr
        Args:
        - s
        Description: HTMLAttr returns the string s as html/template HTMLAttr content.
        Examples: []
      JS:
        Aliases:
        - safeJS
        Args:
        - s
        Description: JS returns the given string as a html/template JS content.
        Examples:
        - - '{{ "(1*2)" | safeJS | safeJS }}'
          - (1*2)
      JSStr:
        Aliases:
        - safeJSStr
        Args:
        - s
        Description: JSStr returns the given string as a html/template JSStr content.
        Examples: []
      SanitizeURL:
        Aliases:
        - sanitizeURL
        - sanitizeurl
        Args:
        - s
        Description: SanitizeURL returns the string s as html/template URL content.
        Examples: []
      URL:
        Aliases:
        - safeURL
        Args:
        - s
        Description: URL returns the string s as html/template URL content.
        Examples:
        - - '{{ "http://gohugo.io" | safeURL | safeURL }}'
          - http://gohugo.io
    site:
      AllPages:
        Aliases: null
        Args: null
        Description: ""
        Examples: null
      Author:
        Aliases: null
        Args: null
        Description: ""
        Examples: null
      Authors:
        Aliases: null
        Args: null
        Description: ""
        Examples: null
      BaseURL:
        Aliases: null
        Args: null
        Description: ""
        Examples: null
      BuildDrafts:
        Aliases: null
        Args: null
        Description: ""
        Examples: null
      Config:
        Aliases: null
        Args: null
        Description: ""
        Examples: null
      Copyright:
        Aliases: null
        Args: null
        Description: ""
        Examples: null
      Current:
        Aliases: null
        Args: null
        Description: ""
        Examples: null
      Data:
        Aliases: null
        Args: null
        Description: ""
        Examples: null
      DisqusShortname:
        Aliases: null
        Args: null
        Description: ""
        Examples: null
      GetIdentity:
        Aliases: null
        Args: null
        Description: ""
        Examples: null
      GetPage:
        Aliases: null
        Args: null
        Description: ""
        Examples: null
      GetPageWithTemplateInfo:
        Aliases: null
        Args: null
        Description: ""
        Examples: null
      GoogleAnalytics:
        Aliases: null
        Args: null
        Description: ""
        Examples: null
      Home:
        Aliases: null
        Args: null
        Description: ""
        Examples: null
      Hugo:
        Aliases: null
        Args: null
        Description: ""
        Examples: null
      IsMultiLingual:
        Aliases: null
        Args: null
        Description: ""
        Examples: null
      IsServer:
        Aliases: null
        Args: null
        Description: ""
        Examples: null
      Language:
        Aliases: null
        Args: null
        Description: ""
        Examples: null
      LanguageCode:
        Aliases: null
        Args: null
        Description: ""
        Examples: null
      LanguagePrefix:
        Aliases: null
        Args: null
        Description: ""
        Examples: null
      Languages:
        Aliases: null
        Args: null
        Description: ""
        Examples: null
      LastChange:
        Aliases: null
        Args: null
        Description: ""
        Examples: null
      MainSections:
        Aliases: null
        Args: null
        Description: ""
        Examples: null
      Menus:
        Aliases: null
        Args: null
        Description: ""
        Examples: null
      Pages:
        Aliases: null
        Args: null
        Description: ""
        Examples: null
      Param:
        Aliases: null
        Args: null
        Description: ""
        Examples: null
      Params:
        Aliases: null
        Args: null
        Description: ""
        Examples: null
      RSSLink:
        Aliases: null
        Args: null
        Description: ""
        Examples: null
      RegularPages:
        Aliases: null
        Args: null
        Description: ""
        Examples: null
      Sections:
        Aliases: null
        Args: null
        Description: ""
        Examples: null
      ServerPort:
        Aliases: null
        Args: null
        Description: ""
        Examples: null
      Sites:
        Aliases: null
        Args: null
        Description: ""
        Examples: null
      Social:
        Aliases: null
        Args: null
        Description: ""
        Examples: null
      Taxonomies:
        Aliases: null
        Args: null
        Description: ""
        Examples: null
      Title:
        Aliases: null
        Args: null
        Description: ""
        Examples: null
    strings:
      Chomp:
        Aliases:
        - chomp
        Args:
        - s
        Description: Chomp returns a copy of s with all trailing newline characters
          removed.
        Examples:
        - - '{{ chomp "<p>Blockhead</p>\n" | safeHTML }}'
          - <p>Blockhead</p>
      Contains:
        Aliases: null
        Args:
        - s
        - substr
        Description: Contains reports whether substr is in s.
        Examples:
        - - '{{ strings.Contains "abc" "b" }}'
          - "true"
        - - '{{ strings.Contains "abc" "d" }}'
          - "false"
      ContainsAny:
        Aliases: null
        Args:
        - s
        - chars
        Description: ContainsAny reports whether any Unicode code points in chars
          are within s.
        Examples:
        - - '{{ strings.ContainsAny "abc" "bcd" }}'
          - "true"
        - - '{{ strings.ContainsAny "abc" "def" }}'
          - "false"
      ContainsNonSpace:
        Aliases: null
        Args: null
        Description: ""
        Examples: null
      Count:
        Aliases: null
        Args:
        - substr
        - s
        Description: |-
          Count counts the number of non-overlapping instances of substr in s.
          If substr is an empty string, Count returns 1 + the number of Unicode code points in s.
        Examples:
        - - '{{ "aabab" | strings.Count "a" }}'
          - "3"
      CountRunes:
        Aliases:
        - countrunes
        Args:
        - s
        Description: CountRunes returns the number of runes in s, excluding whitespace.
        Examples: []
      CountWords:
        Aliases:
        - countwords
        Args:
        - s
        Description: CountWords returns the approximate word count in s.
        Examples: []
      FindRE:
        Aliases:
        - findRE
        Args:
        - expr
        - content
        - limit
        Description: |-
          FindRE returns a list of strings that match the regular expression. By default all matches
          will be included. The number of matches can be limited with an optional third parameter.
        Examples:
        - - '{{ findRE "[G|g]o" "Hugo is a static side generator written in Go." 1
            }}'
          - '[go]'
      FindRESubmatch:
        Aliases:
        - findRESubmatch
        Args:
        - expr
        - content
        - limit
        Description: |-
          FindRESubmatch returns a slice of all successive matches of the regular
          expression in content. Each element is a slice of strings holding the text
          of the leftmost match of the regular expression and the matches, if any, of
          its subexpressions.

          By default all matches will be included. The number of matches can be
          limited with the optional limit parameter. A return value of nil indicates
          no match.
        Examples:
        - - '{{ findRESubmatch `<a\s*href="(.+?)">(.+?)</a>` `<li><a href="#foo">Foo</a></li>
            <li><a href="#bar">Bar</a></li>` | print | safeHTML }}'
          - '[[<a href="#foo">Foo</a> #foo Foo] [<a href="#bar">Bar</a> #bar Bar]]'
      FirstUpper:
        Aliases: null
        Args:
        - s
        Description: FirstUpper converts s making  the first character upper case.
        Examples:
        - - '{{ "hugo rocks!" | strings.FirstUpper }}'
          - Hugo rocks!
      HasPrefix:
        Aliases:
        - hasPrefix
        Args:
        - s
        - prefix
        Description: HasPrefix tests whether the input s begins with prefix.
        Examples:
        - - '{{ hasPrefix "Hugo" "Hu" }}'
          - "true"
        - - '{{ hasPrefix "Hugo" "Fu" }}'
          - "false"
      HasSuffix:
        Aliases:
        - hasSuffix
        Args:
        - s
        - suffix
        Description: HasSuffix tests whether the input s begins with suffix.
        Examples:
        - - '{{ hasSuffix "Hugo" "go" }}'
          - "true"
        - - '{{ hasSuffix "Hugo" "du" }}'
          - "false"
      Repeat:
        Aliases: null
        Args:
        - "n"
        - s
        Description: Repeat returns a new string consisting of n copies of the string
          s.
        Examples:
        - - '{{ "yo" | strings.Repeat 4 }}'
          - yoyoyoyo
      Replace:
        Aliases:
        - replace
        Args:
        - s
        - old
        - new
        - limit
        Description: |-
          Replace returns a copy of the string s with all occurrences of old replaced
          with new.  The number of replacements can be limited with an optional fourth
          parameter.
        Examples:
        - - '{{ replace "Batman and Robin" "Robin" "Catwoman" }}'
          - Batman and Catwoman
        - - '{{ replace "aabbaabb" "a" "z" 2 }}'
          - zzbbaabb
      ReplaceRE:
        Aliases:
        - replaceRE
        Args:
        - pattern
        - repl
        - s
        - "n"
        Description: |-
          ReplaceRE returns a copy of s, replacing all matches of the regular
          expression pattern with the replacement text repl. The number of replacements
          can be limited with an optional fourth parameter.
        Examples:
        - - '{{ replaceRE "a+b" "X" "aabbaabbab" }}'
          - XbXbX
        - - '{{ replaceRE "a+b" "X" "aabbaabbab" 1 }}'
          - Xbaabbab
      RuneCount:
        Aliases: null
        Args:
        - s
        Description: RuneCount returns the number of runes in s.
        Examples: []
      SliceString:
        Aliases:
        - slicestr
        Args:
        - a
        - startEnd
        Description: |-
          SliceString slices a string by specifying a half-open range with
          two indices, start and end. 1 and 4 creates a slice including elements 1 through 3.
          The end index can be omitted, it defaults to the string's length.
        Examples:
        - - '{{ slicestr "BatMan" 0 3 }}'
          - Bat
        - - '{{ slicestr "BatMan" 3 }}'
          - Man
      Split:
        Aliases:
        - split
        Args:
        - a
        - delimiter
        Description: Split slices an input string into all substrings separated by
          delimiter.
        Examples: []
      Substr:
        Aliases:
        - substr
        Args:
        - a
        - nums
        Description: |-
          Substr extracts parts of a string, beginning at the character at the specified
          position, and returns the specified number of characters.

          It normally takes two parameters: start and length.
          It can also take one parameter: start, i.e. length is omitted, in which case
          the substring starting from start until the end of the string will be returned.

          To extract characters from the end of the string, use a negative start number.

          In addition, borrowing from the extended behavior described at http://php.net/substr,
          if length is given and is negative, then that many characters will be omitted from
          the end of string.
        Examples:
        - - '{{ substr "BatMan" 0 -3 }}'
          - Bat
        - - '{{ substr "BatMan" 3 3 }}'
          - Man
      Title:
        Aliases:
        - title
        Args:
        - s
        Description: |-
          Title returns a copy of the input s with all Unicode letters that begin words
          mapped to their title case.
        Examples:
        - - '{{ title "Bat man" }}'
          - Bat Man
        - - '{{ title "somewhere over the rainbow" }}'
          - Somewhere Over the Rainbow
      ToLower:
        Aliases:
        - lower
        Args:
        - s
        Description: |-
          ToLower returns a copy of the input s with all Unicode letters mapped to their
          lower case.
        Examples:
        - - '{{ lower "BatMan" }}'
          - batman
      ToUpper:
        Aliases:
        - upper
        Args:
        - s
        Description: |-
          ToUpper returns a copy of the input s with all Unicode letters mapped to their
          upper case.
        Examples:
        - - '{{ upper "BatMan" }}'
          - BATMAN
      Trim:
        Aliases:
        - trim
        Args:
        - s
        - cutset
        Description: |-
          Trim returns converts the strings s removing all leading and trailing characters defined
          contained.
        Examples:
        - - '{{ trim "++Batman--" "+-" }}'
          - Batman
      TrimLeft:
        Aliases: null
        Args:
        - cutset
        - s
        Description: |-
          TrimLeft returns a slice of the string s with all leading characters
          contained in cutset removed.
        Examples:
        - - '{{ "aabbaa" | strings.TrimLeft "a" }}'
          - bbaa
      TrimPrefix:
        Aliases: null
        Args:
        - prefix
        - s
        Description: |-
          TrimPrefix returns s without the provided leading prefix string. If s doesn't
          start with prefix, s is returned unchanged.
        Examples:
        - - '{{ "aabbaa" | strings.TrimPrefix "a" }}'
          - abbaa
        - - '{{ "aabbaa" | strings.TrimPrefix "aa" }}'
          - bbaa
      TrimRight:
        Aliases: null
        Args:
        - cutset
        - s
        Description: |-
          TrimRight returns a slice of the string s with all trailing characters
          contained in cutset removed.
        Examples:
        - - '{{ "aabbaa" | strings.TrimRight "a" }}'
          - aabb
      TrimSuffix:
        Aliases: null
        Args:
        - suffix
        - s
        Description: |-
          TrimSuffix returns s without the provided trailing suffix string. If s
          doesn't end with suffix, s is returned unchanged.
        Examples:
        - - '{{ "aabbaa" | strings.TrimSuffix "a" }}'
          - aabba
        - - '{{ "aabbaa" | strings.TrimSuffix "aa" }}'
          - aabb
      Truncate:
        Aliases:
        - truncate
        Args:
        - s
        - options
        Description: Truncate truncates the string in s to the specified length.
        Examples:
        - - '{{ "this is a very long text" | truncate 10 " ..." }}'
          - this is a ...
        - - '{{ "With [Markdown](/markdown) inside." | markdownify | truncate 14 }}'
          - With <a href="/markdown">Markdown …</a>
    templates:
      Exists:
        Aliases: null
        Args:
        - name
        Description: |-
          Exists returns whether the template with the given name exists.
          Note that this is the Unix-styled relative path including filename suffix,
          e.g. partials/header.html
        Examples:
        - - '{{ if (templates.Exists "partials/header.html") }}Yes!{{ end }}'
          - Yes!
        - - '{{ if not (templates.Exists "partials/doesnotexist.html") }}No!{{ end
            }}'
          - No!
    time:
      AsTime:
        Aliases: null
        Args:
        - v
        - args
        Description: |-
          AsTime converts the textual representation of the datetime string into
          a time.Time interface.
        Examples:
        - - '{{ (time "2015-01-21").Year }}'
          - "2015"
      Duration:
        Aliases:
        - duration
        Args:
        - unit
        - number
        Description: |-
          Duration converts the given number to a time.Duration.
          Unit is one of nanosecond/ns, microsecond/us/µs, millisecond/ms, second/s, minute/m or hour/h.
        Examples:
        - - '{{ mul 60 60 | duration "second" }}'
          - 1h0m0s
      Format:
        Aliases:
        - dateFormat
        Args:
        - layout
        - v
        Description: |-
          Format converts the textual representation of the datetime string in v into
          time.Time if needed and formats it with the given layout.
        Examples:
        - - 'dateFormat: {{ dateFormat "Monday, Jan 2, 2006" "2015-01-21" }}'
          - 'dateFormat: Wednesday, Jan 21, 2015'
      Now:
        Aliases:
        - now
        Args: null
        Description: Now returns the current local time or `clock` time
        Examples: []
      ParseDuration:
        Aliases: null
        Args:
        - s
        Description: |-
          ParseDuration parses the duration string s.
          A duration string is a possibly signed sequence of
          decimal numbers, each with optional fraction and a unit suffix,
          such as "300ms", "-1.5h" or "2h45m".
          Valid time units are "ns", "us" (or "µs"), "ms", "s", "m", "h".
          See https://golang.org/pkg/time/#ParseDuration
        Examples:
        - - '{{ "1h12m10s" | time.ParseDuration }}'
          - 1h12m10s
    transform:
      CanHighlight:
        Aliases: null
        Args: null
        Description: ""
        Examples: null
      Emojify:
        Aliases:
        - emojify
        Args:
        - s
        Description: |-
          Emojify returns a copy of s with all emoji codes replaced with actual emojis.

          See http://www.emoji-cheat-sheet.com/
        Examples:
        - - '{{ "I :heart: Hugo" | emojify }}'
          - I ❤️ Hugo
      HTMLEscape:
        Aliases:
        - htmlEscape
        Args:
        - s
        Description: HTMLEscape returns a copy of s with reserved HTML characters
          escaped.
        Examples:
        - - '{{ htmlEscape "Cathal Garvey & The Sunshine Band <cathal@foo.bar>" |
            safeHTML }}'
          - Cathal Garvey &amp; The Sunshine Band &lt;cathal@foo.bar&gt;
        - - '{{ htmlEscape "Cathal Garvey & The Sunshine Band <cathal@foo.bar>" }}'
          - Cathal Garvey &amp;amp; The Sunshine Band &amp;lt;cathal@foo.bar&amp;gt;
        - - '{{ htmlEscape "Cathal Garvey & The Sunshine Band <cathal@foo.bar>" |
            htmlUnescape | safeHTML }}'
          - Cathal Garvey & The Sunshine Band <cathal@foo.bar>
      HTMLUnescape:
        Aliases:
        - htmlUnescape
        Args:
        - s
        Description: |-
          HTMLUnescape returns a copy of s with HTML escape requences converted to plain
          text.
        Examples:
        - - '{{ htmlUnescape "Cathal Garvey &amp; The Sunshine Band &lt;cathal@foo.bar&gt;"
            | safeHTML }}'
          - Cathal Garvey & The Sunshine Band <cathal@foo.bar>
        - - '{{ "Cathal Garvey &amp;amp; The Sunshine Band &amp;lt;cathal@foo.bar&amp;gt;"
            | htmlUnescape | htmlUnescape | safeHTML }}'
          - Cathal Garvey & The Sunshine Band <cathal@foo.bar>
        - - '{{ "Cathal Garvey &amp;amp; The Sunshine Band &amp;lt;cathal@foo.bar&amp;gt;"
            | htmlUnescape | htmlUnescape }}'
          - Cathal Garvey &amp; The Sunshine Band &lt;cathal@foo.bar&gt;
        - - '{{ htmlUnescape "Cathal Garvey &amp; The Sunshine Band &lt;cathal@foo.bar&gt;"
            | htmlEscape | safeHTML }}'
          - Cathal Garvey &amp; The Sunshine Band &lt;cathal@foo.bar&gt;
      Highlight:
        Aliases:
        - highlight
        Args:
        - s
        - lang
        - opts
        Description: |-
          Highlight returns a copy of s as an HTML string with syntax
          highlighting applied.
        Examples: []
      HighlightCodeBlock:
        Aliases: null
        Args: null
        Description: ""
        Examples: null
      Markdownify:
        Aliases:
        - markdownify
        Args:
        - ctx
        - s
        Description: Markdownify renders s from Markdown to HTML.
        Examples:
        - - '{{ .Title | markdownify }}'
          - <strong>BatMan</strong>
      Plainify:
        Aliases:
        - plainify
        Args:
        - s
        Description: Plainify returns a copy of s with all HTML tags removed.
        Examples:
        - - '{{ plainify  "Hello <strong>world</strong>, gophers!" }}'
          - Hello world, gophers!
      Remarshal:
        Aliases: null
        Args:
        - format
        - data
        Description: |-
          Remarshal is used in the Hugo documentation to convert configuration
          examples from YAML to JSON, TOML (and possibly the other way around).
          The is primarily a helper for the Hugo docs site.
          It is not a general purpose YAML to TOML converter etc., and may
          change without notice if it serves a purpose in the docs.
          Format is one of json, yaml or toml.
        Examples:
        - - '{{ "title = \"Hello World\"" | transform.Remarshal "json" | safeHTML
            }}'
          - |
            {
               "title": "Hello World"
            }
      Unmarshal:
        Aliases:
        - unmarshal
        Args:
        - args
        Description: |-
          Unmarshal unmarshals the data given, which can be either a string, json.RawMessage
          or a Resource. Supported formats are JSON, TOML, YAML, and CSV.
          You can optionally provide an options map as the first argument.
        Examples:
        - - '{{ "hello = \"Hello World\"" | transform.Unmarshal }}'
          - map[hello:Hello World]
        - - '{{ "hello = \"Hello World\"" | resources.FromString "data/greetings.toml"
            | transform.Unmarshal }}'
          - map[hello:Hello World]
    urls:
      AbsLangURL:
        Aliases:
        - absLangURL
        Args:
        - s
        Description: |-
          AbsLangURL the string s and converts it to an absolute URL according
          to a page's position in the project directory structure and the current
          language.
        Examples: []
      AbsURL:
        Aliases:
        - absURL
        Args:
        - s
        Description: AbsURL takes the string s and converts it to an absolute URL.
        Examples: []
      Anchorize:
        Aliases:
        - anchorize
        Args:
        - s
        Description: |-
          Anchorize creates sanitized anchor name version of the string s that is compatible
          with how your configured markdown renderer does it.
        Examples:
        - - '{{ "This is a title" | anchorize }}'
          - this-is-a-title
      JoinPath:
        Aliases: null
        Args:
        - elements
        Description: |-
          JoinPath joins the provided elements into a URL string and cleans the result
          of any ./ or ../ elements. If the argument list is empty, JoinPath returns
          an empty string.
        Examples:
        - - '{{ urls.JoinPath "https://example.org" "foo" }}'
          - https://example.org/foo
        - - '{{ urls.JoinPath (slice "a" "b") }}'
          - a/b
      Parse:
        Aliases: null
        Args: null
        Description: ""
        Examples: null
      Ref:
        Aliases:
        - ref
        Args:
        - p
        - args
        Description: Ref returns the absolute URL path to a given content item from
          Page p.
        Examples: []
      RelLangURL:
        Aliases:
        - relLangURL
        Args:
        - s
        Description: |-
          RelLangURL takes the string s and prepends the relative path according to a
          page's position in the project directory structure and the current language.
        Examples: []
      RelRef:
        Aliases:
        - relref
        Args:
        - p
        - args
        Description: RelRef returns the relative URL path to a given content item
          from Page p.
        Examples: []
      RelURL:
        Aliases:
        - relURL
        Args:
        - s
        Description: |-
          RelURL takes the string s and prepends the relative path according to a
          page's position in the project directory structure.
        Examples: []
      URLize:
        Aliases:
        - urlize
        Args:
        - s
        Description: URLize returns the the strings s formatted as an URL.
        Examples: []