blob: f5321b2705c5579b9164b1f105ce2b784e4c90fb (
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
|
@document.meta
title: NorgKit Huge Benchmark Document
authors: [rbdr]
categories: benchmark
version: 1.0
@end
* NorgKit Stress Document
A generated document used to benchmark the parser against a large input.
** Section 1
quick brown fox jumps over a lazy dog
brown fox jumps over a lazy dog while
fox jumps over a lazy dog while parsing
- (x) Task 1.0 for the agenda scanner
-- ( ) nested item under 1.0
- (?) Task 1.1 for the agenda scanner
- (!) Task 1.2 for the agenda scanner
- (+) Task 1.3 for the agenda scanner
-- (!) nested item under 1.3
- (-) Task 1.4 for the agenda scanner
- (=) Task 1.5 for the agenda scanner
~ Ordered step 0 of section 1
~ Ordered step 1 of section 1
~ Ordered step 2 of section 1
~ Ordered step 3 of section 1
> Quoted wisdom number 1 about parsing performance.
** Section 2
brown fox jumps over a lazy dog while
fox jumps over a lazy dog while parsing
jumps over a lazy dog while parsing norg
- (?) Task 2.0 for the agenda scanner
-- ( ) nested item under 2.0
- (!) Task 2.1 for the agenda scanner
- (+) Task 2.2 for the agenda scanner
- (-) Task 2.3 for the agenda scanner
-- (!) nested item under 2.3
- (=) Task 2.4 for the agenda scanner
- (_) Task 2.5 for the agenda scanner
~ Ordered step 0 of section 2
~ Ordered step 1 of section 2
~ Ordered step 2 of section 2
~ Ordered step 3 of section 2
> Quoted wisdom number 2 about parsing performance.
** Section 3
fox jumps over a lazy dog while parsing
jumps over a lazy dog while parsing norg
over a lazy dog while parsing norg blocks
- (!) Task 3.0 for the agenda scanner
-- ( ) nested item under 3.0
- (+) Task 3.1 for the agenda scanner
- (-) Task 3.2 for the agenda scanner
- (=) Task 3.3 for the agenda scanner
-- (!) nested item under 3.3
- (_) Task 3.4 for the agenda scanner
- ( ) Task 3.5 for the agenda scanner
~ Ordered step 0 of section 3
~ Ordered step 1 of section 3
~ Ordered step 2 of section 3
~ Ordered step 3 of section 3
> Quoted wisdom number 3 about parsing performance.
** Section 4
jumps over a lazy dog while parsing norg
over a lazy dog while parsing norg blocks
a lazy dog while parsing norg blocks with
- (+) Task 4.0 for the agenda scanner
-- ( ) nested item under 4.0
- (-) Task 4.1 for the agenda scanner
- (=) Task 4.2 for the agenda scanner
- (_) Task 4.3 for the agenda scanner
-- (!) nested item under 4.3
- ( ) Task 4.4 for the agenda scanner
- (x) Task 4.5 for the agenda scanner
~ Ordered step 0 of section 4
~ Ordered step 1 of section 4
~ Ordered step 2 of section 4
~ Ordered step 3 of section 4
> Quoted wisdom number 4 about parsing performance.
@code swift
let section4 = NorgParser.parse(source) // 4
print(section4.blocks.count)
@end
** Section 5
over a lazy dog while parsing norg blocks
a lazy dog while parsing norg blocks with
lazy dog while parsing norg blocks with bold
- (-) Task 5.0 for the agenda scanner
-- ( ) nested item under 5.0
- (=) Task 5.1 for the agenda scanner
- (_) Task 5.2 for the agenda scanner
- ( ) Task 5.3 for the agenda scanner
-- (!) nested item under 5.3
- (x) Task 5.4 for the agenda scanner
- (?) Task 5.5 for the agenda scanner
~ Ordered step 0 of section 5
~ Ordered step 1 of section 5
~ Ordered step 2 of section 5
~ Ordered step 3 of section 5
> Quoted wisdom number 5 about parsing performance.
___
** Section 6
a lazy dog while parsing norg blocks with
lazy dog while parsing norg blocks with bold
dog while parsing norg blocks with bold italic
- (=) Task 6.0 for the agenda scanner
-- ( ) nested item under 6.0
- (_) Task 6.1 for the agenda scanner
- ( ) Task 6.2 for the agenda scanner
- (x) Task 6.3 for the agenda scanner
-- (!) nested item under 6.3
- (?) Task 6.4 for the agenda scanner
- (!) Task 6.5 for the agenda scanner
~ Ordered step 0 of section 6
~ Ordered step 1 of section 6
~ Ordered step 2 of section 6
~ Ordered step 3 of section 6
> Quoted wisdom number 6 about parsing performance.
** Section 7
lazy dog while parsing norg blocks with *bold*
dog while parsing norg blocks with bold italic
while parsing norg blocks with bold italic and
- (_) Task 7.0 for the agenda scanner
-- ( ) nested item under 7.0
- ( ) Task 7.1 for the agenda scanner
- (x) Task 7.2 for the agenda scanner
- (?) Task 7.3 for the agenda scanner
-- (!) nested item under 7.3
- (!) Task 7.4 for the agenda scanner
- (+) Task 7.5 for the agenda scanner
~ Ordered step 0 of section 7
~ Ordered step 1 of section 7
~ Ordered step 2 of section 7
~ Ordered step 3 of section 7
> Quoted wisdom number 7 about parsing performance.
@math
\sum_{i=0}^{7} i = \frac{7(7+1)}{2}
@end
** Section 8
dog while parsing norg blocks with *bold* /italic/
while parsing norg blocks with bold italic and
parsing norg blocks with bold italic and verbatim
- ( ) Task 8.0 for the agenda scanner
-- ( ) nested item under 8.0
- (x) Task 8.1 for the agenda scanner
- (?) Task 8.2 for the agenda scanner
- (!) Task 8.3 for the agenda scanner
-- (!) nested item under 8.3
- (+) Task 8.4 for the agenda scanner
- (-) Task 8.5 for the agenda scanner
~ Ordered step 0 of section 8
~ Ordered step 1 of section 8
~ Ordered step 2 of section 8
~ Ordered step 3 of section 8
> Quoted wisdom number 8 about parsing performance.
@code swift
let section8 = NorgParser.parse(source) // 8
print(section8.blocks.count)
@end
** Section 9
while parsing norg blocks with *bold* /italic/ and
parsing norg blocks with bold italic and verbatim
norg blocks with bold italic and verbatim runs
- (x) Task 9.0 for the agenda scanner
-- ( ) nested item under 9.0
- (?) Task 9.1 for the agenda scanner
- (!) Task 9.2 for the agenda scanner
- (+) Task 9.3 for the agenda scanner
-- (!) nested item under 9.3
- (-) Task 9.4 for the agenda scanner
- (=) Task 9.5 for the agenda scanner
~ Ordered step 0 of section 9
~ Ordered step 1 of section 9
~ Ordered step 2 of section 9
~ Ordered step 3 of section 9
> Quoted wisdom number 9 about parsing performance.
** Section 10
parsing norg blocks with *bold* /italic/ and `verbatim`
norg blocks with bold italic and verbatim runs
blocks with bold italic and verbatim runs scattered
- (?) Task 10.0 for the agenda scanner
-- ( ) nested item under 10.0
- (!) Task 10.1 for the agenda scanner
- (+) Task 10.2 for the agenda scanner
- (-) Task 10.3 for the agenda scanner
-- (!) nested item under 10.3
- (=) Task 10.4 for the agenda scanner
- (_) Task 10.5 for the agenda scanner
~ Ordered step 0 of section 10
~ Ordered step 1 of section 10
~ Ordered step 2 of section 10
~ Ordered step 3 of section 10
> Quoted wisdom number 10 about parsing performance.
___
** Section 11
norg blocks with *bold* /italic/ and `verbatim` runs
blocks with bold italic and verbatim runs scattered
with bold italic and verbatim runs scattered throughout
- (!) Task 11.0 for the agenda scanner
-- ( ) nested item under 11.0
- (+) Task 11.1 for the agenda scanner
- (-) Task 11.2 for the agenda scanner
- (=) Task 11.3 for the agenda scanner
-- (!) nested item under 11.3
- (_) Task 11.4 for the agenda scanner
- ( ) Task 11.5 for the agenda scanner
~ Ordered step 0 of section 11
~ Ordered step 1 of section 11
~ Ordered step 2 of section 11
~ Ordered step 3 of section 11
> Quoted wisdom number 11 about parsing performance.
** Section 12
blocks with *bold* /italic/ and `verbatim` runs scattered
with bold italic and verbatim runs scattered throughout
bold italic and verbatim runs scattered throughout the
- (+) Task 12.0 for the agenda scanner
-- ( ) nested item under 12.0
- (-) Task 12.1 for the agenda scanner
- (=) Task 12.2 for the agenda scanner
- (_) Task 12.3 for the agenda scanner
-- (!) nested item under 12.3
- ( ) Task 12.4 for the agenda scanner
- (x) Task 12.5 for the agenda scanner
~ Ordered step 0 of section 12
~ Ordered step 1 of section 12
~ Ordered step 2 of section 12
~ Ordered step 3 of section 12
> Quoted wisdom number 12 about parsing performance.
@code swift
let section12 = NorgParser.parse(source) // 12
print(section12.blocks.count)
@end
** Section 13
with *bold* /italic/ and `verbatim` runs scattered throughout
bold italic and verbatim runs scattered throughout the
italic and verbatim runs scattered throughout the prose
- (-) Task 13.0 for the agenda scanner
-- ( ) nested item under 13.0
- (=) Task 13.1 for the agenda scanner
- (_) Task 13.2 for the agenda scanner
- ( ) Task 13.3 for the agenda scanner
-- (!) nested item under 13.3
- (x) Task 13.4 for the agenda scanner
- (?) Task 13.5 for the agenda scanner
~ Ordered step 0 of section 13
~ Ordered step 1 of section 13
~ Ordered step 2 of section 13
~ Ordered step 3 of section 13
> Quoted wisdom number 13 about parsing performance.
** Section 14
*bold* /italic/ and `verbatim` runs scattered throughout the
italic and verbatim runs scattered throughout the prose
and verbatim runs scattered throughout the prose
- (=) Task 14.0 for the agenda scanner
-- ( ) nested item under 14.0
- (_) Task 14.1 for the agenda scanner
- ( ) Task 14.2 for the agenda scanner
- (x) Task 14.3 for the agenda scanner
-- (!) nested item under 14.3
- (?) Task 14.4 for the agenda scanner
- (!) Task 14.5 for the agenda scanner
~ Ordered step 0 of section 14
~ Ordered step 1 of section 14
~ Ordered step 2 of section 14
~ Ordered step 3 of section 14
> Quoted wisdom number 14 about parsing performance.
@math
\sum_{i=0}^{14} i = \frac{14(14+1)}{2}
@end
** Section 15
/italic/ and `verbatim` runs scattered throughout the prose
and verbatim runs scattered throughout the prose
verbatim runs scattered throughout the prose
- (_) Task 15.0 for the agenda scanner
-- ( ) nested item under 15.0
- ( ) Task 15.1 for the agenda scanner
- (x) Task 15.2 for the agenda scanner
- (?) Task 15.3 for the agenda scanner
-- (!) nested item under 15.3
- (!) Task 15.4 for the agenda scanner
- (+) Task 15.5 for the agenda scanner
~ Ordered step 0 of section 15
~ Ordered step 1 of section 15
~ Ordered step 2 of section 15
~ Ordered step 3 of section 15
> Quoted wisdom number 15 about parsing performance.
___
** Section 16
and `verbatim` runs scattered throughout the prose
verbatim runs scattered throughout the prose
runs scattered throughout the prose
- ( ) Task 16.0 for the agenda scanner
-- ( ) nested item under 16.0
- (x) Task 16.1 for the agenda scanner
- (?) Task 16.2 for the agenda scanner
- (!) Task 16.3 for the agenda scanner
-- (!) nested item under 16.3
- (+) Task 16.4 for the agenda scanner
- (-) Task 16.5 for the agenda scanner
~ Ordered step 0 of section 16
~ Ordered step 1 of section 16
~ Ordered step 2 of section 16
~ Ordered step 3 of section 16
> Quoted wisdom number 16 about parsing performance.
@code swift
let section16 = NorgParser.parse(source) // 16
print(section16.blocks.count)
@end
** Section 17
`verbatim` runs scattered throughout the prose
runs scattered throughout the prose
scattered throughout the prose
- (x) Task 17.0 for the agenda scanner
-- ( ) nested item under 17.0
- (?) Task 17.1 for the agenda scanner
- (!) Task 17.2 for the agenda scanner
- (+) Task 17.3 for the agenda scanner
-- (!) nested item under 17.3
- (-) Task 17.4 for the agenda scanner
- (=) Task 17.5 for the agenda scanner
~ Ordered step 0 of section 17
~ Ordered step 1 of section 17
~ Ordered step 2 of section 17
~ Ordered step 3 of section 17
> Quoted wisdom number 17 about parsing performance.
** Section 18
runs scattered throughout the prose
scattered throughout the prose
throughout the prose
- (?) Task 18.0 for the agenda scanner
-- ( ) nested item under 18.0
- (!) Task 18.1 for the agenda scanner
- (+) Task 18.2 for the agenda scanner
- (-) Task 18.3 for the agenda scanner
-- (!) nested item under 18.3
- (=) Task 18.4 for the agenda scanner
- (_) Task 18.5 for the agenda scanner
~ Ordered step 0 of section 18
~ Ordered step 1 of section 18
~ Ordered step 2 of section 18
~ Ordered step 3 of section 18
> Quoted wisdom number 18 about parsing performance.
** Section 19
scattered throughout the prose
throughout the prose
the prose
- (!) Task 19.0 for the agenda scanner
-- ( ) nested item under 19.0
- (+) Task 19.1 for the agenda scanner
- (-) Task 19.2 for the agenda scanner
- (=) Task 19.3 for the agenda scanner
-- (!) nested item under 19.3
- (_) Task 19.4 for the agenda scanner
- ( ) Task 19.5 for the agenda scanner
~ Ordered step 0 of section 19
~ Ordered step 1 of section 19
~ Ordered step 2 of section 19
~ Ordered step 3 of section 19
> Quoted wisdom number 19 about parsing performance.
** Section 20
throughout the prose
the prose
prose
- (+) Task 20.0 for the agenda scanner
-- ( ) nested item under 20.0
- (-) Task 20.1 for the agenda scanner
- (=) Task 20.2 for the agenda scanner
- (_) Task 20.3 for the agenda scanner
-- (!) nested item under 20.3
- ( ) Task 20.4 for the agenda scanner
- (x) Task 20.5 for the agenda scanner
~ Ordered step 0 of section 20
~ Ordered step 1 of section 20
~ Ordered step 2 of section 20
~ Ordered step 3 of section 20
> Quoted wisdom number 20 about parsing performance.
@code swift
let section20 = NorgParser.parse(source) // 20
print(section20.blocks.count)
@end
___
** Section 21
the prose
prose
the quick brown fox jumps over a lazy
- (-) Task 21.0 for the agenda scanner
-- ( ) nested item under 21.0
- (=) Task 21.1 for the agenda scanner
- (_) Task 21.2 for the agenda scanner
- ( ) Task 21.3 for the agenda scanner
-- (!) nested item under 21.3
- (x) Task 21.4 for the agenda scanner
- (?) Task 21.5 for the agenda scanner
~ Ordered step 0 of section 21
~ Ordered step 1 of section 21
~ Ordered step 2 of section 21
~ Ordered step 3 of section 21
> Quoted wisdom number 21 about parsing performance.
@math
\sum_{i=0}^{21} i = \frac{21(21+1)}{2}
@end
** Section 22
prose
the quick brown fox jumps over a lazy
quick brown fox jumps over a lazy dog
- (=) Task 22.0 for the agenda scanner
-- ( ) nested item under 22.0
- (_) Task 22.1 for the agenda scanner
- ( ) Task 22.2 for the agenda scanner
- (x) Task 22.3 for the agenda scanner
-- (!) nested item under 22.3
- (?) Task 22.4 for the agenda scanner
- (!) Task 22.5 for the agenda scanner
~ Ordered step 0 of section 22
~ Ordered step 1 of section 22
~ Ordered step 2 of section 22
~ Ordered step 3 of section 22
> Quoted wisdom number 22 about parsing performance.
** Section 23
the quick brown fox jumps over a lazy
quick brown fox jumps over a lazy dog
brown fox jumps over a lazy dog while
- (_) Task 23.0 for the agenda scanner
-- ( ) nested item under 23.0
- ( ) Task 23.1 for the agenda scanner
- (x) Task 23.2 for the agenda scanner
- (?) Task 23.3 for the agenda scanner
-- (!) nested item under 23.3
- (!) Task 23.4 for the agenda scanner
- (+) Task 23.5 for the agenda scanner
~ Ordered step 0 of section 23
~ Ordered step 1 of section 23
~ Ordered step 2 of section 23
~ Ordered step 3 of section 23
> Quoted wisdom number 23 about parsing performance.
** Section 24
quick brown fox jumps over a lazy dog
brown fox jumps over a lazy dog while
fox jumps over a lazy dog while parsing
- ( ) Task 24.0 for the agenda scanner
-- ( ) nested item under 24.0
- (x) Task 24.1 for the agenda scanner
- (?) Task 24.2 for the agenda scanner
- (!) Task 24.3 for the agenda scanner
-- (!) nested item under 24.3
- (+) Task 24.4 for the agenda scanner
- (-) Task 24.5 for the agenda scanner
~ Ordered step 0 of section 24
~ Ordered step 1 of section 24
~ Ordered step 2 of section 24
~ Ordered step 3 of section 24
> Quoted wisdom number 24 about parsing performance.
@code swift
let section24 = NorgParser.parse(source) // 24
print(section24.blocks.count)
@end
** Section 25
brown fox jumps over a lazy dog while
fox jumps over a lazy dog while parsing
jumps over a lazy dog while parsing norg
- (x) Task 25.0 for the agenda scanner
-- ( ) nested item under 25.0
- (?) Task 25.1 for the agenda scanner
- (!) Task 25.2 for the agenda scanner
- (+) Task 25.3 for the agenda scanner
-- (!) nested item under 25.3
- (-) Task 25.4 for the agenda scanner
- (=) Task 25.5 for the agenda scanner
~ Ordered step 0 of section 25
~ Ordered step 1 of section 25
~ Ordered step 2 of section 25
~ Ordered step 3 of section 25
> Quoted wisdom number 25 about parsing performance.
___
** Section 26
fox jumps over a lazy dog while parsing
jumps over a lazy dog while parsing norg
over a lazy dog while parsing norg blocks
- (?) Task 26.0 for the agenda scanner
-- ( ) nested item under 26.0
- (!) Task 26.1 for the agenda scanner
- (+) Task 26.2 for the agenda scanner
- (-) Task 26.3 for the agenda scanner
-- (!) nested item under 26.3
- (=) Task 26.4 for the agenda scanner
- (_) Task 26.5 for the agenda scanner
~ Ordered step 0 of section 26
~ Ordered step 1 of section 26
~ Ordered step 2 of section 26
~ Ordered step 3 of section 26
> Quoted wisdom number 26 about parsing performance.
** Section 27
jumps over a lazy dog while parsing norg
over a lazy dog while parsing norg blocks
a lazy dog while parsing norg blocks with
- (!) Task 27.0 for the agenda scanner
-- ( ) nested item under 27.0
- (+) Task 27.1 for the agenda scanner
- (-) Task 27.2 for the agenda scanner
- (=) Task 27.3 for the agenda scanner
-- (!) nested item under 27.3
- (_) Task 27.4 for the agenda scanner
- ( ) Task 27.5 for the agenda scanner
~ Ordered step 0 of section 27
~ Ordered step 1 of section 27
~ Ordered step 2 of section 27
~ Ordered step 3 of section 27
> Quoted wisdom number 27 about parsing performance.
** Section 28
over a lazy dog while parsing norg blocks
a lazy dog while parsing norg blocks with
lazy dog while parsing norg blocks with bold
- (+) Task 28.0 for the agenda scanner
-- ( ) nested item under 28.0
- (-) Task 28.1 for the agenda scanner
- (=) Task 28.2 for the agenda scanner
- (_) Task 28.3 for the agenda scanner
-- (!) nested item under 28.3
- ( ) Task 28.4 for the agenda scanner
- (x) Task 28.5 for the agenda scanner
~ Ordered step 0 of section 28
~ Ordered step 1 of section 28
~ Ordered step 2 of section 28
~ Ordered step 3 of section 28
> Quoted wisdom number 28 about parsing performance.
@code swift
let section28 = NorgParser.parse(source) // 28
print(section28.blocks.count)
@end
@math
\sum_{i=0}^{28} i = \frac{28(28+1)}{2}
@end
** Section 29
a lazy dog while parsing norg blocks with
lazy dog while parsing norg blocks with bold
dog while parsing norg blocks with bold italic
- (-) Task 29.0 for the agenda scanner
-- ( ) nested item under 29.0
- (=) Task 29.1 for the agenda scanner
- (_) Task 29.2 for the agenda scanner
- ( ) Task 29.3 for the agenda scanner
-- (!) nested item under 29.3
- (x) Task 29.4 for the agenda scanner
- (?) Task 29.5 for the agenda scanner
~ Ordered step 0 of section 29
~ Ordered step 1 of section 29
~ Ordered step 2 of section 29
~ Ordered step 3 of section 29
> Quoted wisdom number 29 about parsing performance.
** Section 30
lazy dog while parsing norg blocks with *bold*
dog while parsing norg blocks with bold italic
while parsing norg blocks with bold italic and
- (=) Task 30.0 for the agenda scanner
-- ( ) nested item under 30.0
- (_) Task 30.1 for the agenda scanner
- ( ) Task 30.2 for the agenda scanner
- (x) Task 30.3 for the agenda scanner
-- (!) nested item under 30.3
- (?) Task 30.4 for the agenda scanner
- (!) Task 30.5 for the agenda scanner
~ Ordered step 0 of section 30
~ Ordered step 1 of section 30
~ Ordered step 2 of section 30
~ Ordered step 3 of section 30
> Quoted wisdom number 30 about parsing performance.
___
** Section 31
dog while parsing norg blocks with *bold* /italic/
while parsing norg blocks with bold italic and
parsing norg blocks with bold italic and verbatim
- (_) Task 31.0 for the agenda scanner
-- ( ) nested item under 31.0
- ( ) Task 31.1 for the agenda scanner
- (x) Task 31.2 for the agenda scanner
- (?) Task 31.3 for the agenda scanner
-- (!) nested item under 31.3
- (!) Task 31.4 for the agenda scanner
- (+) Task 31.5 for the agenda scanner
~ Ordered step 0 of section 31
~ Ordered step 1 of section 31
~ Ordered step 2 of section 31
~ Ordered step 3 of section 31
> Quoted wisdom number 31 about parsing performance.
** Section 32
while parsing norg blocks with *bold* /italic/ and
parsing norg blocks with bold italic and verbatim
norg blocks with bold italic and verbatim runs
- ( ) Task 32.0 for the agenda scanner
-- ( ) nested item under 32.0
- (x) Task 32.1 for the agenda scanner
- (?) Task 32.2 for the agenda scanner
- (!) Task 32.3 for the agenda scanner
-- (!) nested item under 32.3
- (+) Task 32.4 for the agenda scanner
- (-) Task 32.5 for the agenda scanner
~ Ordered step 0 of section 32
~ Ordered step 1 of section 32
~ Ordered step 2 of section 32
~ Ordered step 3 of section 32
> Quoted wisdom number 32 about parsing performance.
@code swift
let section32 = NorgParser.parse(source) // 32
print(section32.blocks.count)
@end
** Section 33
parsing norg blocks with *bold* /italic/ and `verbatim`
norg blocks with bold italic and verbatim runs
blocks with bold italic and verbatim runs scattered
- (x) Task 33.0 for the agenda scanner
-- ( ) nested item under 33.0
- (?) Task 33.1 for the agenda scanner
- (!) Task 33.2 for the agenda scanner
- (+) Task 33.3 for the agenda scanner
-- (!) nested item under 33.3
- (-) Task 33.4 for the agenda scanner
- (=) Task 33.5 for the agenda scanner
~ Ordered step 0 of section 33
~ Ordered step 1 of section 33
~ Ordered step 2 of section 33
~ Ordered step 3 of section 33
> Quoted wisdom number 33 about parsing performance.
** Section 34
norg blocks with *bold* /italic/ and `verbatim` runs
blocks with bold italic and verbatim runs scattered
with bold italic and verbatim runs scattered throughout
- (?) Task 34.0 for the agenda scanner
-- ( ) nested item under 34.0
- (!) Task 34.1 for the agenda scanner
- (+) Task 34.2 for the agenda scanner
- (-) Task 34.3 for the agenda scanner
-- (!) nested item under 34.3
- (=) Task 34.4 for the agenda scanner
- (_) Task 34.5 for the agenda scanner
~ Ordered step 0 of section 34
~ Ordered step 1 of section 34
~ Ordered step 2 of section 34
~ Ordered step 3 of section 34
> Quoted wisdom number 34 about parsing performance.
** Section 35
blocks with *bold* /italic/ and `verbatim` runs scattered
with bold italic and verbatim runs scattered throughout
bold italic and verbatim runs scattered throughout the
- (!) Task 35.0 for the agenda scanner
-- ( ) nested item under 35.0
- (+) Task 35.1 for the agenda scanner
- (-) Task 35.2 for the agenda scanner
- (=) Task 35.3 for the agenda scanner
-- (!) nested item under 35.3
- (_) Task 35.4 for the agenda scanner
- ( ) Task 35.5 for the agenda scanner
~ Ordered step 0 of section 35
~ Ordered step 1 of section 35
~ Ordered step 2 of section 35
~ Ordered step 3 of section 35
> Quoted wisdom number 35 about parsing performance.
@math
\sum_{i=0}^{35} i = \frac{35(35+1)}{2}
@end
___
** Section 36
with *bold* /italic/ and `verbatim` runs scattered throughout
bold italic and verbatim runs scattered throughout the
italic and verbatim runs scattered throughout the prose
- (+) Task 36.0 for the agenda scanner
-- ( ) nested item under 36.0
- (-) Task 36.1 for the agenda scanner
- (=) Task 36.2 for the agenda scanner
- (_) Task 36.3 for the agenda scanner
-- (!) nested item under 36.3
- ( ) Task 36.4 for the agenda scanner
- (x) Task 36.5 for the agenda scanner
~ Ordered step 0 of section 36
~ Ordered step 1 of section 36
~ Ordered step 2 of section 36
~ Ordered step 3 of section 36
> Quoted wisdom number 36 about parsing performance.
@code swift
let section36 = NorgParser.parse(source) // 36
print(section36.blocks.count)
@end
** Section 37
*bold* /italic/ and `verbatim` runs scattered throughout the
italic and verbatim runs scattered throughout the prose
and verbatim runs scattered throughout the prose
- (-) Task 37.0 for the agenda scanner
-- ( ) nested item under 37.0
- (=) Task 37.1 for the agenda scanner
- (_) Task 37.2 for the agenda scanner
- ( ) Task 37.3 for the agenda scanner
-- (!) nested item under 37.3
- (x) Task 37.4 for the agenda scanner
- (?) Task 37.5 for the agenda scanner
~ Ordered step 0 of section 37
~ Ordered step 1 of section 37
~ Ordered step 2 of section 37
~ Ordered step 3 of section 37
> Quoted wisdom number 37 about parsing performance.
** Section 38
/italic/ and `verbatim` runs scattered throughout the prose
and verbatim runs scattered throughout the prose
verbatim runs scattered throughout the prose
- (=) Task 38.0 for the agenda scanner
-- ( ) nested item under 38.0
- (_) Task 38.1 for the agenda scanner
- ( ) Task 38.2 for the agenda scanner
- (x) Task 38.3 for the agenda scanner
-- (!) nested item under 38.3
- (?) Task 38.4 for the agenda scanner
- (!) Task 38.5 for the agenda scanner
~ Ordered step 0 of section 38
~ Ordered step 1 of section 38
~ Ordered step 2 of section 38
~ Ordered step 3 of section 38
> Quoted wisdom number 38 about parsing performance.
** Section 39
and `verbatim` runs scattered throughout the prose
verbatim runs scattered throughout the prose
runs scattered throughout the prose
- (_) Task 39.0 for the agenda scanner
-- ( ) nested item under 39.0
- ( ) Task 39.1 for the agenda scanner
- (x) Task 39.2 for the agenda scanner
- (?) Task 39.3 for the agenda scanner
-- (!) nested item under 39.3
- (!) Task 39.4 for the agenda scanner
- (+) Task 39.5 for the agenda scanner
~ Ordered step 0 of section 39
~ Ordered step 1 of section 39
~ Ordered step 2 of section 39
~ Ordered step 3 of section 39
> Quoted wisdom number 39 about parsing performance.
** Section 40
`verbatim` runs scattered throughout the prose
runs scattered throughout the prose
scattered throughout the prose
- ( ) Task 40.0 for the agenda scanner
-- ( ) nested item under 40.0
- (x) Task 40.1 for the agenda scanner
- (?) Task 40.2 for the agenda scanner
- (!) Task 40.3 for the agenda scanner
-- (!) nested item under 40.3
- (+) Task 40.4 for the agenda scanner
- (-) Task 40.5 for the agenda scanner
~ Ordered step 0 of section 40
~ Ordered step 1 of section 40
~ Ordered step 2 of section 40
~ Ordered step 3 of section 40
> Quoted wisdom number 40 about parsing performance.
@code swift
let section40 = NorgParser.parse(source) // 40
print(section40.blocks.count)
@end
___
** Section 41
runs scattered throughout the prose
scattered throughout the prose
throughout the prose
- (x) Task 41.0 for the agenda scanner
-- ( ) nested item under 41.0
- (?) Task 41.1 for the agenda scanner
- (!) Task 41.2 for the agenda scanner
- (+) Task 41.3 for the agenda scanner
-- (!) nested item under 41.3
- (-) Task 41.4 for the agenda scanner
- (=) Task 41.5 for the agenda scanner
~ Ordered step 0 of section 41
~ Ordered step 1 of section 41
~ Ordered step 2 of section 41
~ Ordered step 3 of section 41
> Quoted wisdom number 41 about parsing performance.
** Section 42
scattered throughout the prose
throughout the prose
the prose
- (?) Task 42.0 for the agenda scanner
-- ( ) nested item under 42.0
- (!) Task 42.1 for the agenda scanner
- (+) Task 42.2 for the agenda scanner
- (-) Task 42.3 for the agenda scanner
-- (!) nested item under 42.3
- (=) Task 42.4 for the agenda scanner
- (_) Task 42.5 for the agenda scanner
~ Ordered step 0 of section 42
~ Ordered step 1 of section 42
~ Ordered step 2 of section 42
~ Ordered step 3 of section 42
> Quoted wisdom number 42 about parsing performance.
@math
\sum_{i=0}^{42} i = \frac{42(42+1)}{2}
@end
** Section 43
throughout the prose
the prose
prose
- (!) Task 43.0 for the agenda scanner
-- ( ) nested item under 43.0
- (+) Task 43.1 for the agenda scanner
- (-) Task 43.2 for the agenda scanner
- (=) Task 43.3 for the agenda scanner
-- (!) nested item under 43.3
- (_) Task 43.4 for the agenda scanner
- ( ) Task 43.5 for the agenda scanner
~ Ordered step 0 of section 43
~ Ordered step 1 of section 43
~ Ordered step 2 of section 43
~ Ordered step 3 of section 43
> Quoted wisdom number 43 about parsing performance.
** Section 44
the prose
prose
the quick brown fox jumps over a lazy
- (+) Task 44.0 for the agenda scanner
-- ( ) nested item under 44.0
- (-) Task 44.1 for the agenda scanner
- (=) Task 44.2 for the agenda scanner
- (_) Task 44.3 for the agenda scanner
-- (!) nested item under 44.3
- ( ) Task 44.4 for the agenda scanner
- (x) Task 44.5 for the agenda scanner
~ Ordered step 0 of section 44
~ Ordered step 1 of section 44
~ Ordered step 2 of section 44
~ Ordered step 3 of section 44
> Quoted wisdom number 44 about parsing performance.
@code swift
let section44 = NorgParser.parse(source) // 44
print(section44.blocks.count)
@end
** Section 45
prose
the quick brown fox jumps over a lazy
quick brown fox jumps over a lazy dog
- (-) Task 45.0 for the agenda scanner
-- ( ) nested item under 45.0
- (=) Task 45.1 for the agenda scanner
- (_) Task 45.2 for the agenda scanner
- ( ) Task 45.3 for the agenda scanner
-- (!) nested item under 45.3
- (x) Task 45.4 for the agenda scanner
- (?) Task 45.5 for the agenda scanner
~ Ordered step 0 of section 45
~ Ordered step 1 of section 45
~ Ordered step 2 of section 45
~ Ordered step 3 of section 45
> Quoted wisdom number 45 about parsing performance.
___
** Section 46
the quick brown fox jumps over a lazy
quick brown fox jumps over a lazy dog
brown fox jumps over a lazy dog while
- (=) Task 46.0 for the agenda scanner
-- ( ) nested item under 46.0
- (_) Task 46.1 for the agenda scanner
- ( ) Task 46.2 for the agenda scanner
- (x) Task 46.3 for the agenda scanner
-- (!) nested item under 46.3
- (?) Task 46.4 for the agenda scanner
- (!) Task 46.5 for the agenda scanner
~ Ordered step 0 of section 46
~ Ordered step 1 of section 46
~ Ordered step 2 of section 46
~ Ordered step 3 of section 46
> Quoted wisdom number 46 about parsing performance.
** Section 47
quick brown fox jumps over a lazy dog
brown fox jumps over a lazy dog while
fox jumps over a lazy dog while parsing
- (_) Task 47.0 for the agenda scanner
-- ( ) nested item under 47.0
- ( ) Task 47.1 for the agenda scanner
- (x) Task 47.2 for the agenda scanner
- (?) Task 47.3 for the agenda scanner
-- (!) nested item under 47.3
- (!) Task 47.4 for the agenda scanner
- (+) Task 47.5 for the agenda scanner
~ Ordered step 0 of section 47
~ Ordered step 1 of section 47
~ Ordered step 2 of section 47
~ Ordered step 3 of section 47
> Quoted wisdom number 47 about parsing performance.
** Section 48
brown fox jumps over a lazy dog while
fox jumps over a lazy dog while parsing
jumps over a lazy dog while parsing norg
- ( ) Task 48.0 for the agenda scanner
-- ( ) nested item under 48.0
- (x) Task 48.1 for the agenda scanner
- (?) Task 48.2 for the agenda scanner
- (!) Task 48.3 for the agenda scanner
-- (!) nested item under 48.3
- (+) Task 48.4 for the agenda scanner
- (-) Task 48.5 for the agenda scanner
~ Ordered step 0 of section 48
~ Ordered step 1 of section 48
~ Ordered step 2 of section 48
~ Ordered step 3 of section 48
> Quoted wisdom number 48 about parsing performance.
@code swift
let section48 = NorgParser.parse(source) // 48
print(section48.blocks.count)
@end
** Section 49
fox jumps over a lazy dog while parsing
jumps over a lazy dog while parsing norg
over a lazy dog while parsing norg blocks
- (x) Task 49.0 for the agenda scanner
-- ( ) nested item under 49.0
- (?) Task 49.1 for the agenda scanner
- (!) Task 49.2 for the agenda scanner
- (+) Task 49.3 for the agenda scanner
-- (!) nested item under 49.3
- (-) Task 49.4 for the agenda scanner
- (=) Task 49.5 for the agenda scanner
~ Ordered step 0 of section 49
~ Ordered step 1 of section 49
~ Ordered step 2 of section 49
~ Ordered step 3 of section 49
> Quoted wisdom number 49 about parsing performance.
@math
\sum_{i=0}^{49} i = \frac{49(49+1)}{2}
@end
** Section 50
jumps over a lazy dog while parsing norg
over a lazy dog while parsing norg blocks
a lazy dog while parsing norg blocks with
- (?) Task 50.0 for the agenda scanner
-- ( ) nested item under 50.0
- (!) Task 50.1 for the agenda scanner
- (+) Task 50.2 for the agenda scanner
- (-) Task 50.3 for the agenda scanner
-- (!) nested item under 50.3
- (=) Task 50.4 for the agenda scanner
- (_) Task 50.5 for the agenda scanner
~ Ordered step 0 of section 50
~ Ordered step 1 of section 50
~ Ordered step 2 of section 50
~ Ordered step 3 of section 50
> Quoted wisdom number 50 about parsing performance.
___
** Section 51
over a lazy dog while parsing norg blocks
a lazy dog while parsing norg blocks with
lazy dog while parsing norg blocks with bold
- (!) Task 51.0 for the agenda scanner
-- ( ) nested item under 51.0
- (+) Task 51.1 for the agenda scanner
- (-) Task 51.2 for the agenda scanner
- (=) Task 51.3 for the agenda scanner
-- (!) nested item under 51.3
- (_) Task 51.4 for the agenda scanner
- ( ) Task 51.5 for the agenda scanner
~ Ordered step 0 of section 51
~ Ordered step 1 of section 51
~ Ordered step 2 of section 51
~ Ordered step 3 of section 51
> Quoted wisdom number 51 about parsing performance.
** Section 52
a lazy dog while parsing norg blocks with
lazy dog while parsing norg blocks with bold
dog while parsing norg blocks with bold italic
- (+) Task 52.0 for the agenda scanner
-- ( ) nested item under 52.0
- (-) Task 52.1 for the agenda scanner
- (=) Task 52.2 for the agenda scanner
- (_) Task 52.3 for the agenda scanner
-- (!) nested item under 52.3
- ( ) Task 52.4 for the agenda scanner
- (x) Task 52.5 for the agenda scanner
~ Ordered step 0 of section 52
~ Ordered step 1 of section 52
~ Ordered step 2 of section 52
~ Ordered step 3 of section 52
> Quoted wisdom number 52 about parsing performance.
@code swift
let section52 = NorgParser.parse(source) // 52
print(section52.blocks.count)
@end
** Section 53
lazy dog while parsing norg blocks with *bold*
dog while parsing norg blocks with bold italic
while parsing norg blocks with bold italic and
- (-) Task 53.0 for the agenda scanner
-- ( ) nested item under 53.0
- (=) Task 53.1 for the agenda scanner
- (_) Task 53.2 for the agenda scanner
- ( ) Task 53.3 for the agenda scanner
-- (!) nested item under 53.3
- (x) Task 53.4 for the agenda scanner
- (?) Task 53.5 for the agenda scanner
~ Ordered step 0 of section 53
~ Ordered step 1 of section 53
~ Ordered step 2 of section 53
~ Ordered step 3 of section 53
> Quoted wisdom number 53 about parsing performance.
** Section 54
dog while parsing norg blocks with *bold* /italic/
while parsing norg blocks with bold italic and
parsing norg blocks with bold italic and verbatim
- (=) Task 54.0 for the agenda scanner
-- ( ) nested item under 54.0
- (_) Task 54.1 for the agenda scanner
- ( ) Task 54.2 for the agenda scanner
- (x) Task 54.3 for the agenda scanner
-- (!) nested item under 54.3
- (?) Task 54.4 for the agenda scanner
- (!) Task 54.5 for the agenda scanner
~ Ordered step 0 of section 54
~ Ordered step 1 of section 54
~ Ordered step 2 of section 54
~ Ordered step 3 of section 54
> Quoted wisdom number 54 about parsing performance.
** Section 55
while parsing norg blocks with *bold* /italic/ and
parsing norg blocks with bold italic and verbatim
norg blocks with bold italic and verbatim runs
- (_) Task 55.0 for the agenda scanner
-- ( ) nested item under 55.0
- ( ) Task 55.1 for the agenda scanner
- (x) Task 55.2 for the agenda scanner
- (?) Task 55.3 for the agenda scanner
-- (!) nested item under 55.3
- (!) Task 55.4 for the agenda scanner
- (+) Task 55.5 for the agenda scanner
~ Ordered step 0 of section 55
~ Ordered step 1 of section 55
~ Ordered step 2 of section 55
~ Ordered step 3 of section 55
> Quoted wisdom number 55 about parsing performance.
___
** Section 56
parsing norg blocks with *bold* /italic/ and `verbatim`
norg blocks with bold italic and verbatim runs
blocks with bold italic and verbatim runs scattered
- ( ) Task 56.0 for the agenda scanner
-- ( ) nested item under 56.0
- (x) Task 56.1 for the agenda scanner
- (?) Task 56.2 for the agenda scanner
- (!) Task 56.3 for the agenda scanner
-- (!) nested item under 56.3
- (+) Task 56.4 for the agenda scanner
- (-) Task 56.5 for the agenda scanner
~ Ordered step 0 of section 56
~ Ordered step 1 of section 56
~ Ordered step 2 of section 56
~ Ordered step 3 of section 56
> Quoted wisdom number 56 about parsing performance.
@code swift
let section56 = NorgParser.parse(source) // 56
print(section56.blocks.count)
@end
@math
\sum_{i=0}^{56} i = \frac{56(56+1)}{2}
@end
** Section 57
norg blocks with *bold* /italic/ and `verbatim` runs
blocks with bold italic and verbatim runs scattered
with bold italic and verbatim runs scattered throughout
- (x) Task 57.0 for the agenda scanner
-- ( ) nested item under 57.0
- (?) Task 57.1 for the agenda scanner
- (!) Task 57.2 for the agenda scanner
- (+) Task 57.3 for the agenda scanner
-- (!) nested item under 57.3
- (-) Task 57.4 for the agenda scanner
- (=) Task 57.5 for the agenda scanner
~ Ordered step 0 of section 57
~ Ordered step 1 of section 57
~ Ordered step 2 of section 57
~ Ordered step 3 of section 57
> Quoted wisdom number 57 about parsing performance.
** Section 58
blocks with *bold* /italic/ and `verbatim` runs scattered
with bold italic and verbatim runs scattered throughout
bold italic and verbatim runs scattered throughout the
- (?) Task 58.0 for the agenda scanner
-- ( ) nested item under 58.0
- (!) Task 58.1 for the agenda scanner
- (+) Task 58.2 for the agenda scanner
- (-) Task 58.3 for the agenda scanner
-- (!) nested item under 58.3
- (=) Task 58.4 for the agenda scanner
- (_) Task 58.5 for the agenda scanner
~ Ordered step 0 of section 58
~ Ordered step 1 of section 58
~ Ordered step 2 of section 58
~ Ordered step 3 of section 58
> Quoted wisdom number 58 about parsing performance.
** Section 59
with *bold* /italic/ and `verbatim` runs scattered throughout
bold italic and verbatim runs scattered throughout the
italic and verbatim runs scattered throughout the prose
- (!) Task 59.0 for the agenda scanner
-- ( ) nested item under 59.0
- (+) Task 59.1 for the agenda scanner
- (-) Task 59.2 for the agenda scanner
- (=) Task 59.3 for the agenda scanner
-- (!) nested item under 59.3
- (_) Task 59.4 for the agenda scanner
- ( ) Task 59.5 for the agenda scanner
~ Ordered step 0 of section 59
~ Ordered step 1 of section 59
~ Ordered step 2 of section 59
~ Ordered step 3 of section 59
> Quoted wisdom number 59 about parsing performance.
** Section 60
*bold* /italic/ and `verbatim` runs scattered throughout the
italic and verbatim runs scattered throughout the prose
and verbatim runs scattered throughout the prose
- (+) Task 60.0 for the agenda scanner
-- ( ) nested item under 60.0
- (-) Task 60.1 for the agenda scanner
- (=) Task 60.2 for the agenda scanner
- (_) Task 60.3 for the agenda scanner
-- (!) nested item under 60.3
- ( ) Task 60.4 for the agenda scanner
- (x) Task 60.5 for the agenda scanner
~ Ordered step 0 of section 60
~ Ordered step 1 of section 60
~ Ordered step 2 of section 60
~ Ordered step 3 of section 60
> Quoted wisdom number 60 about parsing performance.
@code swift
let section60 = NorgParser.parse(source) // 60
print(section60.blocks.count)
@end
___
** Section 61
/italic/ and `verbatim` runs scattered throughout the prose
and verbatim runs scattered throughout the prose
verbatim runs scattered throughout the prose
- (-) Task 61.0 for the agenda scanner
-- ( ) nested item under 61.0
- (=) Task 61.1 for the agenda scanner
- (_) Task 61.2 for the agenda scanner
- ( ) Task 61.3 for the agenda scanner
-- (!) nested item under 61.3
- (x) Task 61.4 for the agenda scanner
- (?) Task 61.5 for the agenda scanner
~ Ordered step 0 of section 61
~ Ordered step 1 of section 61
~ Ordered step 2 of section 61
~ Ordered step 3 of section 61
> Quoted wisdom number 61 about parsing performance.
** Section 62
and `verbatim` runs scattered throughout the prose
verbatim runs scattered throughout the prose
runs scattered throughout the prose
- (=) Task 62.0 for the agenda scanner
-- ( ) nested item under 62.0
- (_) Task 62.1 for the agenda scanner
- ( ) Task 62.2 for the agenda scanner
- (x) Task 62.3 for the agenda scanner
-- (!) nested item under 62.3
- (?) Task 62.4 for the agenda scanner
- (!) Task 62.5 for the agenda scanner
~ Ordered step 0 of section 62
~ Ordered step 1 of section 62
~ Ordered step 2 of section 62
~ Ordered step 3 of section 62
> Quoted wisdom number 62 about parsing performance.
** Section 63
`verbatim` runs scattered throughout the prose
runs scattered throughout the prose
scattered throughout the prose
- (_) Task 63.0 for the agenda scanner
-- ( ) nested item under 63.0
- ( ) Task 63.1 for the agenda scanner
- (x) Task 63.2 for the agenda scanner
- (?) Task 63.3 for the agenda scanner
-- (!) nested item under 63.3
- (!) Task 63.4 for the agenda scanner
- (+) Task 63.5 for the agenda scanner
~ Ordered step 0 of section 63
~ Ordered step 1 of section 63
~ Ordered step 2 of section 63
~ Ordered step 3 of section 63
> Quoted wisdom number 63 about parsing performance.
@math
\sum_{i=0}^{63} i = \frac{63(63+1)}{2}
@end
** Section 64
runs scattered throughout the prose
scattered throughout the prose
throughout the prose
- ( ) Task 64.0 for the agenda scanner
-- ( ) nested item under 64.0
- (x) Task 64.1 for the agenda scanner
- (?) Task 64.2 for the agenda scanner
- (!) Task 64.3 for the agenda scanner
-- (!) nested item under 64.3
- (+) Task 64.4 for the agenda scanner
- (-) Task 64.5 for the agenda scanner
~ Ordered step 0 of section 64
~ Ordered step 1 of section 64
~ Ordered step 2 of section 64
~ Ordered step 3 of section 64
> Quoted wisdom number 64 about parsing performance.
@code swift
let section64 = NorgParser.parse(source) // 64
print(section64.blocks.count)
@end
** Section 65
scattered throughout the prose
throughout the prose
the prose
- (x) Task 65.0 for the agenda scanner
-- ( ) nested item under 65.0
- (?) Task 65.1 for the agenda scanner
- (!) Task 65.2 for the agenda scanner
- (+) Task 65.3 for the agenda scanner
-- (!) nested item under 65.3
- (-) Task 65.4 for the agenda scanner
- (=) Task 65.5 for the agenda scanner
~ Ordered step 0 of section 65
~ Ordered step 1 of section 65
~ Ordered step 2 of section 65
~ Ordered step 3 of section 65
> Quoted wisdom number 65 about parsing performance.
___
** Section 66
throughout the prose
the prose
prose
- (?) Task 66.0 for the agenda scanner
-- ( ) nested item under 66.0
- (!) Task 66.1 for the agenda scanner
- (+) Task 66.2 for the agenda scanner
- (-) Task 66.3 for the agenda scanner
-- (!) nested item under 66.3
- (=) Task 66.4 for the agenda scanner
- (_) Task 66.5 for the agenda scanner
~ Ordered step 0 of section 66
~ Ordered step 1 of section 66
~ Ordered step 2 of section 66
~ Ordered step 3 of section 66
> Quoted wisdom number 66 about parsing performance.
** Section 67
the prose
prose
the quick brown fox jumps over a lazy
- (!) Task 67.0 for the agenda scanner
-- ( ) nested item under 67.0
- (+) Task 67.1 for the agenda scanner
- (-) Task 67.2 for the agenda scanner
- (=) Task 67.3 for the agenda scanner
-- (!) nested item under 67.3
- (_) Task 67.4 for the agenda scanner
- ( ) Task 67.5 for the agenda scanner
~ Ordered step 0 of section 67
~ Ordered step 1 of section 67
~ Ordered step 2 of section 67
~ Ordered step 3 of section 67
> Quoted wisdom number 67 about parsing performance.
** Section 68
prose
the quick brown fox jumps over a lazy
quick brown fox jumps over a lazy dog
- (+) Task 68.0 for the agenda scanner
-- ( ) nested item under 68.0
- (-) Task 68.1 for the agenda scanner
- (=) Task 68.2 for the agenda scanner
- (_) Task 68.3 for the agenda scanner
-- (!) nested item under 68.3
- ( ) Task 68.4 for the agenda scanner
- (x) Task 68.5 for the agenda scanner
~ Ordered step 0 of section 68
~ Ordered step 1 of section 68
~ Ordered step 2 of section 68
~ Ordered step 3 of section 68
> Quoted wisdom number 68 about parsing performance.
@code swift
let section68 = NorgParser.parse(source) // 68
print(section68.blocks.count)
@end
** Section 69
the quick brown fox jumps over a lazy
quick brown fox jumps over a lazy dog
brown fox jumps over a lazy dog while
- (-) Task 69.0 for the agenda scanner
-- ( ) nested item under 69.0
- (=) Task 69.1 for the agenda scanner
- (_) Task 69.2 for the agenda scanner
- ( ) Task 69.3 for the agenda scanner
-- (!) nested item under 69.3
- (x) Task 69.4 for the agenda scanner
- (?) Task 69.5 for the agenda scanner
~ Ordered step 0 of section 69
~ Ordered step 1 of section 69
~ Ordered step 2 of section 69
~ Ordered step 3 of section 69
> Quoted wisdom number 69 about parsing performance.
** Section 70
quick brown fox jumps over a lazy dog
brown fox jumps over a lazy dog while
fox jumps over a lazy dog while parsing
- (=) Task 70.0 for the agenda scanner
-- ( ) nested item under 70.0
- (_) Task 70.1 for the agenda scanner
- ( ) Task 70.2 for the agenda scanner
- (x) Task 70.3 for the agenda scanner
-- (!) nested item under 70.3
- (?) Task 70.4 for the agenda scanner
- (!) Task 70.5 for the agenda scanner
~ Ordered step 0 of section 70
~ Ordered step 1 of section 70
~ Ordered step 2 of section 70
~ Ordered step 3 of section 70
> Quoted wisdom number 70 about parsing performance.
@math
\sum_{i=0}^{70} i = \frac{70(70+1)}{2}
@end
___
** Section 71
brown fox jumps over a lazy dog while
fox jumps over a lazy dog while parsing
jumps over a lazy dog while parsing norg
- (_) Task 71.0 for the agenda scanner
-- ( ) nested item under 71.0
- ( ) Task 71.1 for the agenda scanner
- (x) Task 71.2 for the agenda scanner
- (?) Task 71.3 for the agenda scanner
-- (!) nested item under 71.3
- (!) Task 71.4 for the agenda scanner
- (+) Task 71.5 for the agenda scanner
~ Ordered step 0 of section 71
~ Ordered step 1 of section 71
~ Ordered step 2 of section 71
~ Ordered step 3 of section 71
> Quoted wisdom number 71 about parsing performance.
** Section 72
fox jumps over a lazy dog while parsing
jumps over a lazy dog while parsing norg
over a lazy dog while parsing norg blocks
- ( ) Task 72.0 for the agenda scanner
-- ( ) nested item under 72.0
- (x) Task 72.1 for the agenda scanner
- (?) Task 72.2 for the agenda scanner
- (!) Task 72.3 for the agenda scanner
-- (!) nested item under 72.3
- (+) Task 72.4 for the agenda scanner
- (-) Task 72.5 for the agenda scanner
~ Ordered step 0 of section 72
~ Ordered step 1 of section 72
~ Ordered step 2 of section 72
~ Ordered step 3 of section 72
> Quoted wisdom number 72 about parsing performance.
@code swift
let section72 = NorgParser.parse(source) // 72
print(section72.blocks.count)
@end
** Section 73
jumps over a lazy dog while parsing norg
over a lazy dog while parsing norg blocks
a lazy dog while parsing norg blocks with
- (x) Task 73.0 for the agenda scanner
-- ( ) nested item under 73.0
- (?) Task 73.1 for the agenda scanner
- (!) Task 73.2 for the agenda scanner
- (+) Task 73.3 for the agenda scanner
-- (!) nested item under 73.3
- (-) Task 73.4 for the agenda scanner
- (=) Task 73.5 for the agenda scanner
~ Ordered step 0 of section 73
~ Ordered step 1 of section 73
~ Ordered step 2 of section 73
~ Ordered step 3 of section 73
> Quoted wisdom number 73 about parsing performance.
** Section 74
over a lazy dog while parsing norg blocks
a lazy dog while parsing norg blocks with
lazy dog while parsing norg blocks with bold
- (?) Task 74.0 for the agenda scanner
-- ( ) nested item under 74.0
- (!) Task 74.1 for the agenda scanner
- (+) Task 74.2 for the agenda scanner
- (-) Task 74.3 for the agenda scanner
-- (!) nested item under 74.3
- (=) Task 74.4 for the agenda scanner
- (_) Task 74.5 for the agenda scanner
~ Ordered step 0 of section 74
~ Ordered step 1 of section 74
~ Ordered step 2 of section 74
~ Ordered step 3 of section 74
> Quoted wisdom number 74 about parsing performance.
** Section 75
a lazy dog while parsing norg blocks with
lazy dog while parsing norg blocks with bold
dog while parsing norg blocks with bold italic
- (!) Task 75.0 for the agenda scanner
-- ( ) nested item under 75.0
- (+) Task 75.1 for the agenda scanner
- (-) Task 75.2 for the agenda scanner
- (=) Task 75.3 for the agenda scanner
-- (!) nested item under 75.3
- (_) Task 75.4 for the agenda scanner
- ( ) Task 75.5 for the agenda scanner
~ Ordered step 0 of section 75
~ Ordered step 1 of section 75
~ Ordered step 2 of section 75
~ Ordered step 3 of section 75
> Quoted wisdom number 75 about parsing performance.
___
** Section 76
lazy dog while parsing norg blocks with *bold*
dog while parsing norg blocks with bold italic
while parsing norg blocks with bold italic and
- (+) Task 76.0 for the agenda scanner
-- ( ) nested item under 76.0
- (-) Task 76.1 for the agenda scanner
- (=) Task 76.2 for the agenda scanner
- (_) Task 76.3 for the agenda scanner
-- (!) nested item under 76.3
- ( ) Task 76.4 for the agenda scanner
- (x) Task 76.5 for the agenda scanner
~ Ordered step 0 of section 76
~ Ordered step 1 of section 76
~ Ordered step 2 of section 76
~ Ordered step 3 of section 76
> Quoted wisdom number 76 about parsing performance.
@code swift
let section76 = NorgParser.parse(source) // 76
print(section76.blocks.count)
@end
** Section 77
dog while parsing norg blocks with *bold* /italic/
while parsing norg blocks with bold italic and
parsing norg blocks with bold italic and verbatim
- (-) Task 77.0 for the agenda scanner
-- ( ) nested item under 77.0
- (=) Task 77.1 for the agenda scanner
- (_) Task 77.2 for the agenda scanner
- ( ) Task 77.3 for the agenda scanner
-- (!) nested item under 77.3
- (x) Task 77.4 for the agenda scanner
- (?) Task 77.5 for the agenda scanner
~ Ordered step 0 of section 77
~ Ordered step 1 of section 77
~ Ordered step 2 of section 77
~ Ordered step 3 of section 77
> Quoted wisdom number 77 about parsing performance.
@math
\sum_{i=0}^{77} i = \frac{77(77+1)}{2}
@end
** Section 78
while parsing norg blocks with *bold* /italic/ and
parsing norg blocks with bold italic and verbatim
norg blocks with bold italic and verbatim runs
- (=) Task 78.0 for the agenda scanner
-- ( ) nested item under 78.0
- (_) Task 78.1 for the agenda scanner
- ( ) Task 78.2 for the agenda scanner
- (x) Task 78.3 for the agenda scanner
-- (!) nested item under 78.3
- (?) Task 78.4 for the agenda scanner
- (!) Task 78.5 for the agenda scanner
~ Ordered step 0 of section 78
~ Ordered step 1 of section 78
~ Ordered step 2 of section 78
~ Ordered step 3 of section 78
> Quoted wisdom number 78 about parsing performance.
** Section 79
parsing norg blocks with *bold* /italic/ and `verbatim`
norg blocks with bold italic and verbatim runs
blocks with bold italic and verbatim runs scattered
- (_) Task 79.0 for the agenda scanner
-- ( ) nested item under 79.0
- ( ) Task 79.1 for the agenda scanner
- (x) Task 79.2 for the agenda scanner
- (?) Task 79.3 for the agenda scanner
-- (!) nested item under 79.3
- (!) Task 79.4 for the agenda scanner
- (+) Task 79.5 for the agenda scanner
~ Ordered step 0 of section 79
~ Ordered step 1 of section 79
~ Ordered step 2 of section 79
~ Ordered step 3 of section 79
> Quoted wisdom number 79 about parsing performance.
** Section 80
norg blocks with *bold* /italic/ and `verbatim` runs
blocks with bold italic and verbatim runs scattered
with bold italic and verbatim runs scattered throughout
- ( ) Task 80.0 for the agenda scanner
-- ( ) nested item under 80.0
- (x) Task 80.1 for the agenda scanner
- (?) Task 80.2 for the agenda scanner
- (!) Task 80.3 for the agenda scanner
-- (!) nested item under 80.3
- (+) Task 80.4 for the agenda scanner
- (-) Task 80.5 for the agenda scanner
~ Ordered step 0 of section 80
~ Ordered step 1 of section 80
~ Ordered step 2 of section 80
~ Ordered step 3 of section 80
> Quoted wisdom number 80 about parsing performance.
@code swift
let section80 = NorgParser.parse(source) // 80
print(section80.blocks.count)
@end
___
** Section 81
blocks with *bold* /italic/ and `verbatim` runs scattered
with bold italic and verbatim runs scattered throughout
bold italic and verbatim runs scattered throughout the
- (x) Task 81.0 for the agenda scanner
-- ( ) nested item under 81.0
- (?) Task 81.1 for the agenda scanner
- (!) Task 81.2 for the agenda scanner
- (+) Task 81.3 for the agenda scanner
-- (!) nested item under 81.3
- (-) Task 81.4 for the agenda scanner
- (=) Task 81.5 for the agenda scanner
~ Ordered step 0 of section 81
~ Ordered step 1 of section 81
~ Ordered step 2 of section 81
~ Ordered step 3 of section 81
> Quoted wisdom number 81 about parsing performance.
** Section 82
with *bold* /italic/ and `verbatim` runs scattered throughout
bold italic and verbatim runs scattered throughout the
italic and verbatim runs scattered throughout the prose
- (?) Task 82.0 for the agenda scanner
-- ( ) nested item under 82.0
- (!) Task 82.1 for the agenda scanner
- (+) Task 82.2 for the agenda scanner
- (-) Task 82.3 for the agenda scanner
-- (!) nested item under 82.3
- (=) Task 82.4 for the agenda scanner
- (_) Task 82.5 for the agenda scanner
~ Ordered step 0 of section 82
~ Ordered step 1 of section 82
~ Ordered step 2 of section 82
~ Ordered step 3 of section 82
> Quoted wisdom number 82 about parsing performance.
** Section 83
*bold* /italic/ and `verbatim` runs scattered throughout the
italic and verbatim runs scattered throughout the prose
and verbatim runs scattered throughout the prose
- (!) Task 83.0 for the agenda scanner
-- ( ) nested item under 83.0
- (+) Task 83.1 for the agenda scanner
- (-) Task 83.2 for the agenda scanner
- (=) Task 83.3 for the agenda scanner
-- (!) nested item under 83.3
- (_) Task 83.4 for the agenda scanner
- ( ) Task 83.5 for the agenda scanner
~ Ordered step 0 of section 83
~ Ordered step 1 of section 83
~ Ordered step 2 of section 83
~ Ordered step 3 of section 83
> Quoted wisdom number 83 about parsing performance.
** Section 84
/italic/ and `verbatim` runs scattered throughout the prose
and verbatim runs scattered throughout the prose
verbatim runs scattered throughout the prose
- (+) Task 84.0 for the agenda scanner
-- ( ) nested item under 84.0
- (-) Task 84.1 for the agenda scanner
- (=) Task 84.2 for the agenda scanner
- (_) Task 84.3 for the agenda scanner
-- (!) nested item under 84.3
- ( ) Task 84.4 for the agenda scanner
- (x) Task 84.5 for the agenda scanner
~ Ordered step 0 of section 84
~ Ordered step 1 of section 84
~ Ordered step 2 of section 84
~ Ordered step 3 of section 84
> Quoted wisdom number 84 about parsing performance.
@code swift
let section84 = NorgParser.parse(source) // 84
print(section84.blocks.count)
@end
@math
\sum_{i=0}^{84} i = \frac{84(84+1)}{2}
@end
** Section 85
and `verbatim` runs scattered throughout the prose
verbatim runs scattered throughout the prose
runs scattered throughout the prose
- (-) Task 85.0 for the agenda scanner
-- ( ) nested item under 85.0
- (=) Task 85.1 for the agenda scanner
- (_) Task 85.2 for the agenda scanner
- ( ) Task 85.3 for the agenda scanner
-- (!) nested item under 85.3
- (x) Task 85.4 for the agenda scanner
- (?) Task 85.5 for the agenda scanner
~ Ordered step 0 of section 85
~ Ordered step 1 of section 85
~ Ordered step 2 of section 85
~ Ordered step 3 of section 85
> Quoted wisdom number 85 about parsing performance.
___
** Section 86
`verbatim` runs scattered throughout the prose
runs scattered throughout the prose
scattered throughout the prose
- (=) Task 86.0 for the agenda scanner
-- ( ) nested item under 86.0
- (_) Task 86.1 for the agenda scanner
- ( ) Task 86.2 for the agenda scanner
- (x) Task 86.3 for the agenda scanner
-- (!) nested item under 86.3
- (?) Task 86.4 for the agenda scanner
- (!) Task 86.5 for the agenda scanner
~ Ordered step 0 of section 86
~ Ordered step 1 of section 86
~ Ordered step 2 of section 86
~ Ordered step 3 of section 86
> Quoted wisdom number 86 about parsing performance.
** Section 87
runs scattered throughout the prose
scattered throughout the prose
throughout the prose
- (_) Task 87.0 for the agenda scanner
-- ( ) nested item under 87.0
- ( ) Task 87.1 for the agenda scanner
- (x) Task 87.2 for the agenda scanner
- (?) Task 87.3 for the agenda scanner
-- (!) nested item under 87.3
- (!) Task 87.4 for the agenda scanner
- (+) Task 87.5 for the agenda scanner
~ Ordered step 0 of section 87
~ Ordered step 1 of section 87
~ Ordered step 2 of section 87
~ Ordered step 3 of section 87
> Quoted wisdom number 87 about parsing performance.
** Section 88
scattered throughout the prose
throughout the prose
the prose
- ( ) Task 88.0 for the agenda scanner
-- ( ) nested item under 88.0
- (x) Task 88.1 for the agenda scanner
- (?) Task 88.2 for the agenda scanner
- (!) Task 88.3 for the agenda scanner
-- (!) nested item under 88.3
- (+) Task 88.4 for the agenda scanner
- (-) Task 88.5 for the agenda scanner
~ Ordered step 0 of section 88
~ Ordered step 1 of section 88
~ Ordered step 2 of section 88
~ Ordered step 3 of section 88
> Quoted wisdom number 88 about parsing performance.
@code swift
let section88 = NorgParser.parse(source) // 88
print(section88.blocks.count)
@end
** Section 89
throughout the prose
the prose
prose
- (x) Task 89.0 for the agenda scanner
-- ( ) nested item under 89.0
- (?) Task 89.1 for the agenda scanner
- (!) Task 89.2 for the agenda scanner
- (+) Task 89.3 for the agenda scanner
-- (!) nested item under 89.3
- (-) Task 89.4 for the agenda scanner
- (=) Task 89.5 for the agenda scanner
~ Ordered step 0 of section 89
~ Ordered step 1 of section 89
~ Ordered step 2 of section 89
~ Ordered step 3 of section 89
> Quoted wisdom number 89 about parsing performance.
** Section 90
the prose
prose
the quick brown fox jumps over a lazy
- (?) Task 90.0 for the agenda scanner
-- ( ) nested item under 90.0
- (!) Task 90.1 for the agenda scanner
- (+) Task 90.2 for the agenda scanner
- (-) Task 90.3 for the agenda scanner
-- (!) nested item under 90.3
- (=) Task 90.4 for the agenda scanner
- (_) Task 90.5 for the agenda scanner
~ Ordered step 0 of section 90
~ Ordered step 1 of section 90
~ Ordered step 2 of section 90
~ Ordered step 3 of section 90
> Quoted wisdom number 90 about parsing performance.
___
** Section 91
prose
the quick brown fox jumps over a lazy
quick brown fox jumps over a lazy dog
- (!) Task 91.0 for the agenda scanner
-- ( ) nested item under 91.0
- (+) Task 91.1 for the agenda scanner
- (-) Task 91.2 for the agenda scanner
- (=) Task 91.3 for the agenda scanner
-- (!) nested item under 91.3
- (_) Task 91.4 for the agenda scanner
- ( ) Task 91.5 for the agenda scanner
~ Ordered step 0 of section 91
~ Ordered step 1 of section 91
~ Ordered step 2 of section 91
~ Ordered step 3 of section 91
> Quoted wisdom number 91 about parsing performance.
@math
\sum_{i=0}^{91} i = \frac{91(91+1)}{2}
@end
** Section 92
the quick brown fox jumps over a lazy
quick brown fox jumps over a lazy dog
brown fox jumps over a lazy dog while
- (+) Task 92.0 for the agenda scanner
-- ( ) nested item under 92.0
- (-) Task 92.1 for the agenda scanner
- (=) Task 92.2 for the agenda scanner
- (_) Task 92.3 for the agenda scanner
-- (!) nested item under 92.3
- ( ) Task 92.4 for the agenda scanner
- (x) Task 92.5 for the agenda scanner
~ Ordered step 0 of section 92
~ Ordered step 1 of section 92
~ Ordered step 2 of section 92
~ Ordered step 3 of section 92
> Quoted wisdom number 92 about parsing performance.
@code swift
let section92 = NorgParser.parse(source) // 92
print(section92.blocks.count)
@end
** Section 93
quick brown fox jumps over a lazy dog
brown fox jumps over a lazy dog while
fox jumps over a lazy dog while parsing
- (-) Task 93.0 for the agenda scanner
-- ( ) nested item under 93.0
- (=) Task 93.1 for the agenda scanner
- (_) Task 93.2 for the agenda scanner
- ( ) Task 93.3 for the agenda scanner
-- (!) nested item under 93.3
- (x) Task 93.4 for the agenda scanner
- (?) Task 93.5 for the agenda scanner
~ Ordered step 0 of section 93
~ Ordered step 1 of section 93
~ Ordered step 2 of section 93
~ Ordered step 3 of section 93
> Quoted wisdom number 93 about parsing performance.
** Section 94
brown fox jumps over a lazy dog while
fox jumps over a lazy dog while parsing
jumps over a lazy dog while parsing norg
- (=) Task 94.0 for the agenda scanner
-- ( ) nested item under 94.0
- (_) Task 94.1 for the agenda scanner
- ( ) Task 94.2 for the agenda scanner
- (x) Task 94.3 for the agenda scanner
-- (!) nested item under 94.3
- (?) Task 94.4 for the agenda scanner
- (!) Task 94.5 for the agenda scanner
~ Ordered step 0 of section 94
~ Ordered step 1 of section 94
~ Ordered step 2 of section 94
~ Ordered step 3 of section 94
> Quoted wisdom number 94 about parsing performance.
** Section 95
fox jumps over a lazy dog while parsing
jumps over a lazy dog while parsing norg
over a lazy dog while parsing norg blocks
- (_) Task 95.0 for the agenda scanner
-- ( ) nested item under 95.0
- ( ) Task 95.1 for the agenda scanner
- (x) Task 95.2 for the agenda scanner
- (?) Task 95.3 for the agenda scanner
-- (!) nested item under 95.3
- (!) Task 95.4 for the agenda scanner
- (+) Task 95.5 for the agenda scanner
~ Ordered step 0 of section 95
~ Ordered step 1 of section 95
~ Ordered step 2 of section 95
~ Ordered step 3 of section 95
> Quoted wisdom number 95 about parsing performance.
___
** Section 96
jumps over a lazy dog while parsing norg
over a lazy dog while parsing norg blocks
a lazy dog while parsing norg blocks with
- ( ) Task 96.0 for the agenda scanner
-- ( ) nested item under 96.0
- (x) Task 96.1 for the agenda scanner
- (?) Task 96.2 for the agenda scanner
- (!) Task 96.3 for the agenda scanner
-- (!) nested item under 96.3
- (+) Task 96.4 for the agenda scanner
- (-) Task 96.5 for the agenda scanner
~ Ordered step 0 of section 96
~ Ordered step 1 of section 96
~ Ordered step 2 of section 96
~ Ordered step 3 of section 96
> Quoted wisdom number 96 about parsing performance.
@code swift
let section96 = NorgParser.parse(source) // 96
print(section96.blocks.count)
@end
** Section 97
over a lazy dog while parsing norg blocks
a lazy dog while parsing norg blocks with
lazy dog while parsing norg blocks with bold
- (x) Task 97.0 for the agenda scanner
-- ( ) nested item under 97.0
- (?) Task 97.1 for the agenda scanner
- (!) Task 97.2 for the agenda scanner
- (+) Task 97.3 for the agenda scanner
-- (!) nested item under 97.3
- (-) Task 97.4 for the agenda scanner
- (=) Task 97.5 for the agenda scanner
~ Ordered step 0 of section 97
~ Ordered step 1 of section 97
~ Ordered step 2 of section 97
~ Ordered step 3 of section 97
> Quoted wisdom number 97 about parsing performance.
** Section 98
a lazy dog while parsing norg blocks with
lazy dog while parsing norg blocks with bold
dog while parsing norg blocks with bold italic
- (?) Task 98.0 for the agenda scanner
-- ( ) nested item under 98.0
- (!) Task 98.1 for the agenda scanner
- (+) Task 98.2 for the agenda scanner
- (-) Task 98.3 for the agenda scanner
-- (!) nested item under 98.3
- (=) Task 98.4 for the agenda scanner
- (_) Task 98.5 for the agenda scanner
~ Ordered step 0 of section 98
~ Ordered step 1 of section 98
~ Ordered step 2 of section 98
~ Ordered step 3 of section 98
> Quoted wisdom number 98 about parsing performance.
@math
\sum_{i=0}^{98} i = \frac{98(98+1)}{2}
@end
** Section 99
lazy dog while parsing norg blocks with *bold*
dog while parsing norg blocks with bold italic
while parsing norg blocks with bold italic and
- (!) Task 99.0 for the agenda scanner
-- ( ) nested item under 99.0
- (+) Task 99.1 for the agenda scanner
- (-) Task 99.2 for the agenda scanner
- (=) Task 99.3 for the agenda scanner
-- (!) nested item under 99.3
- (_) Task 99.4 for the agenda scanner
- ( ) Task 99.5 for the agenda scanner
~ Ordered step 0 of section 99
~ Ordered step 1 of section 99
~ Ordered step 2 of section 99
~ Ordered step 3 of section 99
> Quoted wisdom number 99 about parsing performance.
** Section 100
dog while parsing norg blocks with *bold* /italic/
while parsing norg blocks with bold italic and
parsing norg blocks with bold italic and verbatim
- (+) Task 100.0 for the agenda scanner
-- ( ) nested item under 100.0
- (-) Task 100.1 for the agenda scanner
- (=) Task 100.2 for the agenda scanner
- (_) Task 100.3 for the agenda scanner
-- (!) nested item under 100.3
- ( ) Task 100.4 for the agenda scanner
- (x) Task 100.5 for the agenda scanner
~ Ordered step 0 of section 100
~ Ordered step 1 of section 100
~ Ordered step 2 of section 100
~ Ordered step 3 of section 100
> Quoted wisdom number 100 about parsing performance.
@code swift
let section100 = NorgParser.parse(source) // 100
print(section100.blocks.count)
@end
___
** Section 101
while parsing norg blocks with *bold* /italic/ and
parsing norg blocks with bold italic and verbatim
norg blocks with bold italic and verbatim runs
- (-) Task 101.0 for the agenda scanner
-- ( ) nested item under 101.0
- (=) Task 101.1 for the agenda scanner
- (_) Task 101.2 for the agenda scanner
- ( ) Task 101.3 for the agenda scanner
-- (!) nested item under 101.3
- (x) Task 101.4 for the agenda scanner
- (?) Task 101.5 for the agenda scanner
~ Ordered step 0 of section 101
~ Ordered step 1 of section 101
~ Ordered step 2 of section 101
~ Ordered step 3 of section 101
> Quoted wisdom number 101 about parsing performance.
** Section 102
parsing norg blocks with *bold* /italic/ and `verbatim`
norg blocks with bold italic and verbatim runs
blocks with bold italic and verbatim runs scattered
- (=) Task 102.0 for the agenda scanner
-- ( ) nested item under 102.0
- (_) Task 102.1 for the agenda scanner
- ( ) Task 102.2 for the agenda scanner
- (x) Task 102.3 for the agenda scanner
-- (!) nested item under 102.3
- (?) Task 102.4 for the agenda scanner
- (!) Task 102.5 for the agenda scanner
~ Ordered step 0 of section 102
~ Ordered step 1 of section 102
~ Ordered step 2 of section 102
~ Ordered step 3 of section 102
> Quoted wisdom number 102 about parsing performance.
|