-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcalcit.cirru
3477 lines (3476 loc) · 272 KB
/
calcit.cirru
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
{} (:package |respo-md)
:configs $ {} (:init-fn |respo-md.main/main!) (:output |src) (:port 6001) (:reload-fn |respo-md.main/reload!) (:storage-key |calcit.cirru) (:version |0.4.6)
:modules $ [] |respo.calcit/compact.cirru |respo-ui.calcit/compact.cirru |memof/compact.cirru |lilac/compact.cirru
:entries $ {}
:files $ {}
|respo-md.comp.container $ %{} :FileEntry
:defs $ {}
|comp-container $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1505725057558) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1505727501758) (:by |root) (:text |defcomp)
|j $ %{} :Leaf (:at 1505725057558) (:by |root) (:text |comp-container)
|n $ %{} :Expr (:at 1505727504292) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1505727504998) (:by |root) (:text |store)
|j $ %{} :Leaf (:at 1505730982666) (:by |root) (:text |highlighter)
|p $ %{} :Expr (:at 1505727548387) (:by |root)
:data $ {}
|D $ %{} :Leaf (:at 1505727549043) (:by |root) (:text |let)
|L $ %{} :Expr (:at 1505727549265) (:by |root)
:data $ {}
|T $ %{} :Expr (:at 1505727549415) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1505727551326) (:by |root) (:text |states)
|j $ %{} :Expr (:at 1505727551563) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1505727553338) (:by |root) (:text |:states)
|j $ %{} :Leaf (:at 1505727554261) (:by |root) (:text |store)
|b $ %{} :Expr (:at 1604993448025) (:by |wA2nX3K2f)
:data $ {}
|T $ %{} :Leaf (:at 1604993450133) (:by |wA2nX3K2f) (:text |cursor)
|j $ %{} :Expr (:at 1604993458643) (:by |wA2nX3K2f)
:data $ {}
|D $ %{} :Leaf (:at 1610734068493) (:by |wA2nX3K2f) (:text |either)
|T $ %{} :Expr (:at 1604993451171) (:by |wA2nX3K2f)
:data $ {}
|T $ %{} :Leaf (:at 1604993455203) (:by |wA2nX3K2f) (:text |:cursor)
|j $ %{} :Leaf (:at 1604993458218) (:by |wA2nX3K2f) (:text |states)
|j $ %{} :Expr (:at 1604993460055) (:by |wA2nX3K2f)
:data $ {}
|T $ %{} :Leaf (:at 1604993460387) (:by |wA2nX3K2f) (:text |[])
|j $ %{} :Expr (:at 1505727555091) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1505727555850) (:by |root) (:text |state)
|j $ %{} :Expr (:at 1505727557133) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1610734064857) (:by |wA2nX3K2f) (:text |either)
|j $ %{} :Expr (:at 1505727562987) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1505727561366) (:by |root) (:text |:data)
|j $ %{} :Leaf (:at 1505727564864) (:by |root) (:text |states)
|r $ %{} :Leaf (:at 1505727567606) (:by |root) (:text |initial-state)
|T $ %{} :Expr (:at 1505725057558) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1505725057558) (:by |root) (:text |div)
|j $ %{} :Expr (:at 1505725057558) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1505725057558) (:by |root) (:text |{})
|b $ %{} :Expr (:at 1701453553984) (:by |wA2nX3K2f)
:data $ {}
|T $ %{} :Leaf (:at 1701453556165) (:by |wA2nX3K2f) (:text |:class-name)
|b $ %{} :Leaf (:at 1701453557994) (:by |wA2nX3K2f) (:text |css/global)
|j $ %{} :Expr (:at 1505725057558) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1505725057558) (:by |root) (:text |:style)
|j $ %{} :Expr (:at 1519666231707) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1519666232286) (:by |root) (:text |{})
|j $ %{} :Expr (:at 1519666232551) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1519666233841) (:by |root) (:text |:width)
|j $ %{} :Leaf (:at 1736070900967) (:by |wA2nX3K2f) (:text ||96%)
|r $ %{} :Expr (:at 1519666237536) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1519666242626) (:by |root) (:text |:margin)
|j $ %{} :Leaf (:at 1519666245079) (:by |root) (:text "||0 auto")
|t $ %{} :Expr (:at 1701535637629) (:by |wA2nX3K2f)
:data $ {}
|T $ %{} :Leaf (:at 1701535638861) (:by |wA2nX3K2f) (:text |:padding)
|b $ %{} :Leaf (:at 1701535640299) (:by |wA2nX3K2f) (:text |8)
|l $ %{} :Expr (:at 1519667208341) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1519667209559) (:by |root) (:text |div)
|j $ %{} :Expr (:at 1519667209799) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1519667210149) (:by |root) (:text |{})
|b $ %{} :Expr (:at 1701535548107) (:by |wA2nX3K2f)
:data $ {}
|T $ %{} :Leaf (:at 1701535555220) (:by |wA2nX3K2f) (:text |:class-name)
|b $ %{} :Leaf (:at 1701535626405) (:by |wA2nX3K2f) (:text |css/row-middle)
|n $ %{} :Expr (:at 1701535560251) (:by |wA2nX3K2f)
:data $ {}
|T $ %{} :Leaf (:at 1701535561167) (:by |wA2nX3K2f) (:text |img)
|b $ %{} :Expr (:at 1701535562273) (:by |wA2nX3K2f)
:data $ {}
|T $ %{} :Leaf (:at 1701535562067) (:by |wA2nX3K2f) (:text |{})
|b $ %{} :Expr (:at 1701535576150) (:by |wA2nX3K2f)
:data $ {}
|T $ %{} :Leaf (:at 1701535576904) (:by |wA2nX3K2f) (:text |:src)
|b $ %{} :Leaf (:at 1701535598954) (:by |wA2nX3K2f) (:text "|\"https://cos-sh.tiye.me/cos-up/bb4c2755050318e864b56f59145d726e-SubstractRespo.png")
|h $ %{} :Expr (:at 1701535601280) (:by |wA2nX3K2f)
:data $ {}
|T $ %{} :Leaf (:at 1701535602275) (:by |wA2nX3K2f) (:text |:width)
|b $ %{} :Leaf (:at 1701535648033) (:by |wA2nX3K2f) (:text |40)
|p $ %{} :Expr (:at 1701535629537) (:by |wA2nX3K2f)
:data $ {}
|T $ %{} :Leaf (:at 1701535630259) (:by |wA2nX3K2f) (:text |=<)
|b $ %{} :Leaf (:at 1701535631059) (:by |wA2nX3K2f) (:text |8)
|h $ %{} :Leaf (:at 1701535631567) (:by |wA2nX3K2f) (:text |nil)
|r $ %{} :Expr (:at 1519668146091) (:by |root)
:data $ {}
|D $ %{} :Leaf (:at 1519668146639) (:by |root) (:text |a)
|L $ %{} :Expr (:at 1519668147383) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1519668147826) (:by |root) (:text |{})
|j $ %{} :Expr (:at 1519668148235) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1519668150003) (:by |root) (:text |:href)
|j $ %{} :Leaf (:at 1701535520987) (:by |wA2nX3K2f) (:text ||https://github.com/Respo/respo-markdown.calcit)
|T $ %{} :Expr (:at 1519667210771) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1519667211837) (:by |root) (:text |<>)
|j $ %{} :Leaf (:at 1519667215929) (:by |root) (:text ||respo-markdown)
|m $ %{} :Expr (:at 1519667221229) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1519667222564) (:by |root) (:text |div)
|j $ %{} :Expr (:at 1519667222866) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1519667223215) (:by |root) (:text |{})
|r $ %{} :Expr (:at 1519667223732) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1519667368528) (:by |root) (:text |comp-md-block)
|j $ %{} :Leaf (:at 1701453535754) (:by |wA2nX3K2f) (:text "||Respo Markdown component renders Markdown text to virtual DOM in Respo. Require the code with\n\n```cirru\n:require\n respo-md.comp.md :refer $ comp-md comp-md-block\n\ncomp-md \"|content\"\n\ncomp-md-block \"|content\\nnew line\" $ {}\n```\n")
|r $ %{} :Expr (:at 1519667369384) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1519667369745) (:by |root) (:text |{})
|mT $ %{} :Expr (:at 1701535668447) (:by |wA2nX3K2f)
:data $ {}
|T $ %{} :Leaf (:at 1701535668447) (:by |wA2nX3K2f) (:text |=<)
|b $ %{} :Leaf (:at 1701535668447) (:by |wA2nX3K2f) (:text |nil)
|h $ %{} :Leaf (:at 1701535668447) (:by |wA2nX3K2f) (:text |40)
|n $ %{} :Expr (:at 1519636082578) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1519636083747) (:by |root) (:text |div)
|j $ %{} :Expr (:at 1519636083956) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1519636084293) (:by |root) (:text |{})
|j $ %{} :Expr (:at 1519636084566) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1519636089648) (:by |root) (:text |:style)
|j $ %{} :Expr (:at 1519636089874) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1519636090304) (:by |root) (:text |{})
|n $ %{} :Expr (:at 1519667388871) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1519667389401) (:by |root) (:text |div)
|j $ %{} :Expr (:at 1519667389648) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1519667389960) (:by |root) (:text |{})
|r $ %{} :Expr (:at 1519667392117) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1519667415609) (:by |root) (:text |comp-md)
|j $ %{} :Leaf (:at 1519667411426) (:by |root) (:text "||This is an example for using `comp-md`:")
|r $ %{} :Expr (:at 1519667385975) (:by |root)
:data $ {}
|D $ %{} :Leaf (:at 1519667386674) (:by |root) (:text |div)
|L $ %{} :Expr (:at 1519667386967) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1519667387320) (:by |root) (:text |{})
|T $ %{} :Expr (:at 1519636091595) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1519636092591) (:by |root) (:text |input)
|j $ %{} :Expr (:at 1519636092805) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1519636093109) (:by |root) (:text |{})
|b $ %{} :Expr (:at 1701453588157) (:by |wA2nX3K2f)
:data $ {}
|T $ %{} :Leaf (:at 1701453590603) (:by |wA2nX3K2f) (:text |:class-name)
|b $ %{} :Leaf (:at 1701453592878) (:by |wA2nX3K2f) (:text |css/input)
|j $ %{} :Expr (:at 1519636093657) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1519636096877) (:by |root) (:text |:style)
|j $ %{} :Expr (:at 1519636606008) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1519636606328) (:by |root) (:text |{})
|j $ %{} :Expr (:at 1519667537765) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1519667538766) (:by |root) (:text |:width)
|j $ %{} :Leaf (:at 1519667540089) (:by |root) (:text ||100%)
|r $ %{} :Expr (:at 1519636210841) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1519636211804) (:by |root) (:text |:value)
|j $ %{} :Expr (:at 1519636212409) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1519636213126) (:by |root) (:text |:text)
|j $ %{} :Leaf (:at 1519636213706) (:by |root) (:text |state)
|t $ %{} :Expr (:at 1519667663253) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1519667667363) (:by |root) (:text |:placeholder)
|j $ %{} :Leaf (:at 1519667671464) (:by |root) (:text "||text inline")
|v $ %{} :Expr (:at 1519636214774) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1519636217004) (:by |root) (:text |:on-input)
|j $ %{} :Expr (:at 1519636217402) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1604993439405) (:by |wA2nX3K2f) (:text |fn)
|b $ %{} :Expr (:at 1604993440300) (:by |wA2nX3K2f)
:data $ {}
|T $ %{} :Leaf (:at 1604993440585) (:by |wA2nX3K2f) (:text |e)
|j $ %{} :Leaf (:at 1604993441127) (:by |wA2nX3K2f) (:text |d!)
|j $ %{} :Expr (:at 1604993442294) (:by |wA2nX3K2f)
:data $ {}
|D $ %{} :Leaf (:at 1604993444132) (:by |wA2nX3K2f) (:text |d!)
|L $ %{} :Leaf (:at 1604993445125) (:by |wA2nX3K2f) (:text |cursor)
|T $ %{} :Expr (:at 1519636220710) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1519636221572) (:by |root) (:text |assoc)
|j $ %{} :Leaf (:at 1519636222894) (:by |root) (:text |state)
|r $ %{} :Leaf (:at 1519636224255) (:by |root) (:text |:text)
|v $ %{} :Expr (:at 1519636224632) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1519636226843) (:by |root) (:text |:value)
|j $ %{} :Leaf (:at 1604993570363) (:by |wA2nX3K2f) (:text |e)
|v $ %{} :Expr (:at 1519636102692) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1519636103343) (:by |root) (:text |div)
|j $ %{} :Expr (:at 1519636103537) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1519636106583) (:by |root) (:text |{})
|r $ %{} :Expr (:at 1519636107040) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1519636110292) (:by |root) (:text |comp-md)
|j $ %{} :Expr (:at 1519636204706) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1519636206830) (:by |root) (:text |:text)
|j $ %{} :Leaf (:at 1519636208338) (:by |root) (:text |state)
|p $ %{} :Expr (:at 1519666281442) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1519666282429) (:by |root) (:text |=<)
|j $ %{} :Leaf (:at 1519666283329) (:by |root) (:text |nil)
|r $ %{} :Leaf (:at 1519667202122) (:by |root) (:text |40)
|q $ %{} :Expr (:at 1701532551653) (:by |wA2nX3K2f)
:data $ {}
|T $ %{} :Leaf (:at 1701532551653) (:by |wA2nX3K2f) (:text |div)
|b $ %{} :Expr (:at 1701532551653) (:by |wA2nX3K2f)
:data $ {}
|T $ %{} :Leaf (:at 1701532551653) (:by |wA2nX3K2f) (:text |{})
|h $ %{} :Expr (:at 1701532551653) (:by |wA2nX3K2f)
:data $ {}
|T $ %{} :Leaf (:at 1701532551653) (:by |wA2nX3K2f) (:text |comp-md)
|b $ %{} :Leaf (:at 1701532551653) (:by |wA2nX3K2f) (:text "||Example For using `comp-md-block`:")
|r $ %{} :Expr (:at 1519635935661) (:by |root)
:data $ {}
|D $ %{} :Leaf (:at 1519635936391) (:by |root) (:text |div)
|L $ %{} :Expr (:at 1519635936607) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1519635936929) (:by |root) (:text |{})
|b $ %{} :Expr (:at 1701532555255) (:by |wA2nX3K2f)
:data $ {}
|T $ %{} :Leaf (:at 1701532556675) (:by |wA2nX3K2f) (:text |:class-name)
|b $ %{} :Leaf (:at 1701532558944) (:by |wA2nX3K2f) (:text |css/row)
|T $ %{} :Expr (:at 1519667420713) (:by |root)
:data $ {}
|D $ %{} :Leaf (:at 1519667421408) (:by |root) (:text |div)
|L $ %{} :Expr (:at 1519667423158) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1519667423507) (:by |root) (:text |{})
|b $ %{} :Expr (:at 1701532562261) (:by |wA2nX3K2f)
:data $ {}
|T $ %{} :Leaf (:at 1701532564857) (:by |wA2nX3K2f) (:text |:class-name)
|b $ %{} :Leaf (:at 1701532567340) (:by |wA2nX3K2f) (:text |css/expand)
|T $ %{} :Expr (:at 1505725057558) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1505725057558) (:by |root) (:text |textarea)
|j $ %{} :Expr (:at 1505725057558) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1505725057558) (:by |root) (:text |{})
|b $ %{} :Expr (:at 1505725057558) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1505725057558) (:by |root) (:text |:placeholder)
|j $ %{} :Leaf (:at 1519667681976) (:by |root) (:text "||multi-line content")
|f $ %{} :Expr (:at 1505725057558) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1505725057558) (:by |root) (:text |:value)
|j $ %{} :Expr (:at 1505725057558) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1505725057558) (:by |root) (:text |:draft)
|j $ %{} :Leaf (:at 1505725057558) (:by |root) (:text |state)
|h $ %{} :Expr (:at 1701453601696) (:by |wA2nX3K2f)
:data $ {}
|T $ %{} :Leaf (:at 1701453603994) (:by |wA2nX3K2f) (:text |:class-name)
|b $ %{} :Expr (:at 1701532598063) (:by |wA2nX3K2f)
:data $ {}
|D $ %{} :Leaf (:at 1701532600135) (:by |wA2nX3K2f) (:text |str-spaced)
|T $ %{} :Leaf (:at 1701453606609) (:by |wA2nX3K2f) (:text |css/textarea)
|b $ %{} :Leaf (:at 1701532860953) (:by |wA2nX3K2f) (:text |css/font-code!)
|j $ %{} :Expr (:at 1505725057558) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1505725057558) (:by |root) (:text |:style)
|j $ %{} :Expr (:at 1519635981594) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1519635981969) (:by |root) (:text |{})
|j $ %{} :Expr (:at 1519635982219) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1701532682236) (:by |wA2nX3K2f) (:text |:height)
|j $ %{} :Leaf (:at 1701532687724) (:by |wA2nX3K2f) (:text "|\"100%")
|n $ %{} :Expr (:at 1701534000655) (:by |wA2nX3K2f)
:data $ {}
|T $ %{} :Leaf (:at 1701534002303) (:by |wA2nX3K2f) (:text |:width)
|b $ %{} :Leaf (:at 1701534003730) (:by |wA2nX3K2f) (:text "|\"100%")
|q $ %{} :Expr (:at 1701534004232) (:by |wA2nX3K2f)
:data $ {}
|T $ %{} :Leaf (:at 1701534006673) (:by |wA2nX3K2f) (:text |:font-size)
|b $ %{} :Leaf (:at 1701534012748) (:by |wA2nX3K2f) (:text |13)
|v $ %{} :Expr (:at 1701453618208) (:by |wA2nX3K2f)
:data $ {}
|T $ %{} :Leaf (:at 1701453618208) (:by |wA2nX3K2f) (:text |:on-input)
|b $ %{} :Expr (:at 1701453618208) (:by |wA2nX3K2f)
:data $ {}
|T $ %{} :Leaf (:at 1701453618208) (:by |wA2nX3K2f) (:text |fn)
|b $ %{} :Expr (:at 1701453618208) (:by |wA2nX3K2f)
:data $ {}
|T $ %{} :Leaf (:at 1701453618208) (:by |wA2nX3K2f) (:text |e)
|b $ %{} :Leaf (:at 1701453618208) (:by |wA2nX3K2f) (:text |d!)
|h $ %{} :Expr (:at 1701453618208) (:by |wA2nX3K2f)
:data $ {}
|T $ %{} :Leaf (:at 1701453618208) (:by |wA2nX3K2f) (:text |;)
|b $ %{} :Leaf (:at 1701453618208) (:by |wA2nX3K2f) (:text |println)
|h $ %{} :Leaf (:at 1701453618208) (:by |wA2nX3K2f) (:text ||Editing:)
|l $ %{} :Leaf (:at 1701453618208) (:by |wA2nX3K2f) (:text |state)
|o $ %{} :Expr (:at 1701453618208) (:by |wA2nX3K2f)
:data $ {}
|T $ %{} :Leaf (:at 1701453618208) (:by |wA2nX3K2f) (:text |:value)
|b $ %{} :Leaf (:at 1701453618208) (:by |wA2nX3K2f) (:text |e)
|l $ %{} :Expr (:at 1701453618208) (:by |wA2nX3K2f)
:data $ {}
|T $ %{} :Leaf (:at 1701453618208) (:by |wA2nX3K2f) (:text |d!)
|b $ %{} :Leaf (:at 1701453618208) (:by |wA2nX3K2f) (:text |cursor)
|h $ %{} :Expr (:at 1701453618208) (:by |wA2nX3K2f)
:data $ {}
|T $ %{} :Leaf (:at 1701453618208) (:by |wA2nX3K2f) (:text |assoc)
|b $ %{} :Leaf (:at 1701453618208) (:by |wA2nX3K2f) (:text |state)
|h $ %{} :Leaf (:at 1701453618208) (:by |wA2nX3K2f) (:text |:draft)
|l $ %{} :Expr (:at 1701453618208) (:by |wA2nX3K2f)
:data $ {}
|T $ %{} :Leaf (:at 1701453618208) (:by |wA2nX3K2f) (:text |:value)
|b $ %{} :Leaf (:at 1701453618208) (:by |wA2nX3K2f) (:text |e)
|j $ %{} :Expr (:at 1519635994848) (:by |root)
:data $ {}
|D $ %{} :Leaf (:at 1519635996530) (:by |root) (:text |div)
|L $ %{} :Expr (:at 1519635996781) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1519635997097) (:by |root) (:text |{})
|b $ %{} :Expr (:at 1701453620661) (:by |wA2nX3K2f)
:data $ {}
|T $ %{} :Leaf (:at 1701453622649) (:by |wA2nX3K2f) (:text |:class-name)
|b $ %{} :Leaf (:at 1701453624184) (:by |wA2nX3K2f) (:text |css/flex)
|j $ %{} :Expr (:at 1519635998824) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1519635999712) (:by |root) (:text |:style)
|j $ %{} :Expr (:at 1519635999950) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1519636000224) (:by |root) (:text |{})
|j $ %{} :Expr (:at 1519636000475) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1519636002766) (:by |root) (:text |:padding)
|j $ %{} :Leaf (:at 1519636003541) (:by |root) (:text |8)
|T $ %{} :Expr (:at 1505725057558) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1519632143897) (:by |root) (:text |comp-md-block)
|j $ %{} :Expr (:at 1505725057558) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1505725057558) (:by |root) (:text |:draft)
|j $ %{} :Leaf (:at 1505725057558) (:by |root) (:text |state)
|r $ %{} :Expr (:at 1505725057558) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1505725057558) (:by |root) (:text |{})
|j $ %{} :Expr (:at 1505725057558) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1505725057558) (:by |root) (:text |:highlight)
|j $ %{} :Leaf (:at 1505730937250) (:by |root) (:text |highlighter)
|v $ %{} :Expr (:at 1520789005245) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1520789006749) (:by |root) (:text |:class-name)
|j $ %{} :Leaf (:at 1520789008066) (:by |root) (:text ||demo)
|t $ %{} :Expr (:at 1650651782303) (:by |wA2nX3K2f)
:data $ {}
|T $ %{} :Leaf (:at 1650651782948) (:by |wA2nX3K2f) (:text |=<)
|b $ %{} :Leaf (:at 1650651785023) (:by |wA2nX3K2f) (:text |nil)
|h $ %{} :Leaf (:at 1650651785610) (:by |wA2nX3K2f) (:text |200)
|initial-state $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1505727567989) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1505727568736) (:by |root) (:text |def)
|j $ %{} :Leaf (:at 1505727567989) (:by |root) (:text |initial-state)
|r $ %{} :Expr (:at 1505725057558) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1505725057558) (:by |root) (:text |{})
|j $ %{} :Expr (:at 1505725057558) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1505725057558) (:by |root) (:text |:draft)
|j $ %{} :Leaf (:at 1505725057558) (:by |root) (:text ||)
|r $ %{} :Expr (:at 1519636197599) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1519636199835) (:by |root) (:text |:text)
|j $ %{} :Leaf (:at 1519636200127) (:by |root) (:text ||)
:ns $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1505725057558) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1505725057558) (:by |root) (:text |ns)
|j $ %{} :Leaf (:at 1505725057558) (:by |root) (:text |respo-md.comp.container)
|r $ %{} :Expr (:at 1505725057558) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1505725057558) (:by |root) (:text |:require)
|j $ %{} :Expr (:at 1505725057558) (:by nil)
:data $ {}
|j $ %{} :Leaf (:at 1610732016720) (:by |wA2nX3K2f) (:text |respo.util.format)
|r $ %{} :Leaf (:at 1505725057558) (:by |root) (:text |:refer)
|v $ %{} :Expr (:at 1505725057558) (:by nil)
:data $ {}
|j $ %{} :Leaf (:at 1505725057558) (:by |root) (:text |hsl)
|r $ %{} :Expr (:at 1505725057558) (:by nil)
:data $ {}
|j $ %{} :Leaf (:at 1505725057558) (:by |root) (:text |respo-ui.core)
|r $ %{} :Leaf (:at 1505725057558) (:by |root) (:text |:as)
|v $ %{} :Leaf (:at 1505725057558) (:by |root) (:text |ui)
|u $ %{} :Expr (:at 1505725057558) (:by nil)
:data $ {}
|j $ %{} :Leaf (:at 1701453565066) (:by |wA2nX3K2f) (:text |respo-ui.css)
|r $ %{} :Leaf (:at 1505725057558) (:by |root) (:text |:as)
|v $ %{} :Leaf (:at 1701453566541) (:by |wA2nX3K2f) (:text |css)
|x $ %{} :Expr (:at 1505725057558) (:by nil)
:data $ {}
|j $ %{} :Leaf (:at 1505725057558) (:by |root) (:text |respo.comp.space)
|r $ %{} :Leaf (:at 1505725057558) (:by |root) (:text |:refer)
|v $ %{} :Expr (:at 1505725057558) (:by nil)
:data $ {}
|j $ %{} :Leaf (:at 1505726952691) (:by |root) (:text |=<)
|yT $ %{} :Expr (:at 1505725057558) (:by nil)
:data $ {}
|j $ %{} :Leaf (:at 1519632066189) (:by |root) (:text |respo-md.comp.md)
|r $ %{} :Leaf (:at 1505725057558) (:by |root) (:text |:refer)
|v $ %{} :Expr (:at 1505725057558) (:by nil)
:data $ {}
|j $ %{} :Leaf (:at 1519632128446) (:by |root) (:text |comp-md)
|r $ %{} :Leaf (:at 1519632309109) (:by |root) (:text |comp-md-block)
|yj $ %{} :Expr (:at 1505726927139) (:by |root)
:data $ {}
|j $ %{} :Leaf (:at 1540917574411) (:by |root) (:text |respo.core)
|r $ %{} :Leaf (:at 1505726931244) (:by |root) (:text |:refer)
|v $ %{} :Expr (:at 1505726931520) (:by |root)
:data $ {}
|b $ %{} :Leaf (:at 1505726936654) (:by |root) (:text |defcomp)
|j $ %{} :Leaf (:at 1505726934044) (:by |root) (:text |<>)
|r $ %{} :Leaf (:at 1505726942621) (:by |root) (:text |div)
|v $ %{} :Leaf (:at 1505726943769) (:by |root) (:text |span)
|x $ %{} :Leaf (:at 1505726945290) (:by |root) (:text |textarea)
|y $ %{} :Leaf (:at 1519636123858) (:by |root) (:text |input)
|yT $ %{} :Leaf (:at 1519668159416) (:by |root) (:text |a)
|z $ %{} :Leaf (:at 1701535574109) (:by |wA2nX3K2f) (:text |img)
|respo-md.comp.md $ %{} :FileEntry
:defs $ {}
|blockquote $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1505725057558) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1505725057558) (:by |root) (:text |defn)
|j $ %{} :Leaf (:at 1505725057558) (:by |root) (:text |blockquote)
|r $ %{} :Expr (:at 1505725057558) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1505725057558) (:by |root) (:text |props)
|j $ %{} :Leaf (:at 1505725057558) (:by |root) (:text |&)
|r $ %{} :Leaf (:at 1505725057558) (:by |root) (:text |children)
|v $ %{} :Expr (:at 1505725057558) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1505725057558) (:by |root) (:text |create-element)
|j $ %{} :Leaf (:at 1505725057558) (:by |root) (:text |:blockquote)
|r $ %{} :Leaf (:at 1505725057558) (:by |root) (:text |props)
|t $ %{} :Leaf (:at 1619549322828) (:by |wA2nX3K2f) (:text |&)
|v $ %{} :Leaf (:at 1505725057558) (:by |root) (:text |children)
|comp-code-block $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1505725057558) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1505727949016) (:by |root) (:text |defcomp)
|j $ %{} :Leaf (:at 1505725057558) (:by |root) (:text |comp-code-block)
|n $ %{} :Expr (:at 1505725057558) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1505725057558) (:by |root) (:text |lines)
|j $ %{} :Leaf (:at 1505725057558) (:by |root) (:text |options)
|r $ %{} :Expr (:at 1505725057558) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1505725057558) (:by |root) (:text |let)
|j $ %{} :Expr (:at 1505725057558) (:by nil)
:data $ {}
|T $ %{} :Expr (:at 1505725057558) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1505725057558) (:by |root) (:text |lang)
|j $ %{} :Expr (:at 1505725057558) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1505725057558) (:by |root) (:text |first)
|j $ %{} :Leaf (:at 1505725057558) (:by |root) (:text |lines)
|j $ %{} :Expr (:at 1505725057558) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1505725057558) (:by |root) (:text |content)
|j $ %{} :Expr (:at 1505725057558) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1610732597144) (:by |wA2nX3K2f) (:text |join-str)
|r $ %{} :Expr (:at 1505725057558) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1505725057558) (:by |root) (:text |rest)
|j $ %{} :Leaf (:at 1505725057558) (:by |root) (:text |lines)
|v $ %{} :Leaf (:at 1619549157943) (:by |wA2nX3K2f) (:text |&newline)
|r $ %{} :Expr (:at 1505725057558) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1505725057558) (:by |root) (:text |highlight-fn)
|j $ %{} :Expr (:at 1701453821178) (:by |wA2nX3K2f)
:data $ {}
|D $ %{} :Leaf (:at 1701453822702) (:by |wA2nX3K2f) (:text |either)
|T $ %{} :Expr (:at 1505725057558) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1505725057558) (:by |root) (:text |:highlight)
|j $ %{} :Leaf (:at 1505725057558) (:by |root) (:text |options)
|b $ %{} :Expr (:at 1701453824389) (:by |wA2nX3K2f)
:data $ {}
|T $ %{} :Leaf (:at 1701453823977) (:by |wA2nX3K2f) (:text |fn)
|b $ %{} :Expr (:at 1701453825393) (:by |wA2nX3K2f)
:data $ {}
|T $ %{} :Leaf (:at 1701453827833) (:by |wA2nX3K2f) (:text |x)
|b $ %{} :Leaf (:at 1701453828936) (:by |wA2nX3K2f) (:text |&)
|h $ %{} :Leaf (:at 1701453830502) (:by |wA2nX3K2f) (:text |l)
|h $ %{} :Leaf (:at 1701453831591) (:by |wA2nX3K2f) (:text |x)
|t $ %{} :Expr (:at 1701532396237) (:by |wA2nX3K2f)
:data $ {}
|D $ %{} :Leaf (:at 1701532397857) (:by |wA2nX3K2f) (:text |if)
|L $ %{} :Expr (:at 1701532398440) (:by |wA2nX3K2f)
:data $ {}
|T $ %{} :Leaf (:at 1701532399231) (:by |wA2nX3K2f) (:text |=)
|b $ %{} :Leaf (:at 1701532400784) (:by |wA2nX3K2f) (:text |lang)
|h $ %{} :Leaf (:at 1701532402122) (:by |wA2nX3K2f) (:text "|\"cirru")
|P $ %{} :Expr (:at 1701532418519) (:by |wA2nX3K2f)
:data $ {}
|D $ %{} :Leaf (:at 1701534336272) (:by |wA2nX3K2f) (:text |memof1-call)
|T $ %{} :Leaf (:at 1701532638224) (:by |wA2nX3K2f) (:text |comp-cirru-snippet)
|b $ %{} :Leaf (:at 1701532425809) (:by |wA2nX3K2f) (:text |content)
|h $ %{} :Expr (:at 1701532431027) (:by |wA2nX3K2f)
:data $ {}
|T $ %{} :Leaf (:at 1701532431027) (:by |wA2nX3K2f) (:text |{})
|b $ %{} :Expr (:at 1701532431027) (:by |wA2nX3K2f)
:data $ {}
|T $ %{} :Leaf (:at 1701532431027) (:by |wA2nX3K2f) (:text |:class-name)
|b $ %{} :Leaf (:at 1701532431027) (:by |wA2nX3K2f) (:text |style-code-block)
|T $ %{} :Expr (:at 1701453707501) (:by |wA2nX3K2f)
:data $ {}
|D $ %{} :Leaf (:at 1701534341203) (:by |wA2nX3K2f) (:text |memof1-call)
|T $ %{} :Leaf (:at 1701453707743) (:by |wA2nX3K2f) (:text |comp-snippet)
|a $ %{} :Leaf (:at 1701532728788) (:by |wA2nX3K2f) (:text |content)
|h $ %{} :Expr (:at 1701453856397) (:by |wA2nX3K2f)
:data $ {}
|T $ %{} :Leaf (:at 1701453856723) (:by |wA2nX3K2f) (:text |{})
|b $ %{} :Expr (:at 1701453887841) (:by |wA2nX3K2f)
:data $ {}
|T $ %{} :Leaf (:at 1701453890081) (:by |wA2nX3K2f) (:text |:class-name)
|b $ %{} :Leaf (:at 1701453891709) (:by |wA2nX3K2f) (:text |style-code-block)
|h $ %{} :Expr (:at 1701532356271) (:by |wA2nX3K2f)
:data $ {}
|T $ %{} :Leaf (:at 1701532461949) (:by |wA2nX3K2f) (:text |:highlighter)
|b $ %{} :Leaf (:at 1701532364792) (:by |wA2nX3K2f) (:text |highlight-fn)
|l $ %{} :Expr (:at 1701532448335) (:by |wA2nX3K2f)
:data $ {}
|T $ %{} :Leaf (:at 1701532449300) (:by |wA2nX3K2f) (:text |:lang)
|b $ %{} :Leaf (:at 1701532450871) (:by |wA2nX3K2f) (:text |lang)
|comp-image $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1505725057558) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1505725057558) (:by |root) (:text |defn)
|j $ %{} :Leaf (:at 1505725057558) (:by |root) (:text |comp-image)
|r $ %{} :Expr (:at 1505725057558) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1505725057558) (:by |root) (:text |chunk)
|v $ %{} :Expr (:at 1505725057558) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1505725057558) (:by |root) (:text |let)
|j $ %{} :Expr (:at 1505725057558) (:by nil)
:data $ {}
|T $ %{} :Expr (:at 1505725057558) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1505725057558) (:by |root) (:text |useful)
|j $ %{} :Expr (:at 1505725057558) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1623694304398) (:by |wA2nX3K2f) (:text |&str:slice)
|j $ %{} :Leaf (:at 1505725057558) (:by |root) (:text |chunk)
|r $ %{} :Leaf (:at 1505725057558) (:by |root) (:text |2)
|v $ %{} :Expr (:at 1505725057558) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1505725057558) (:by |root) (:text |-)
|j $ %{} :Expr (:at 1505725057558) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1505725057558) (:by |root) (:text |count)
|j $ %{} :Leaf (:at 1505725057558) (:by |root) (:text |chunk)
|r $ %{} :Leaf (:at 1505725057558) (:by |root) (:text |1)
|r $ %{} :Expr (:at 1610732442668) (:by |wA2nX3K2f)
:data $ {}
|D $ %{} :Leaf (:at 1610732443683) (:by |wA2nX3K2f) (:text |let[])
|L $ %{} :Expr (:at 1610732444355) (:by |wA2nX3K2f)
:data $ {}
|j $ %{} :Leaf (:at 1610732444355) (:by |wA2nX3K2f) (:text |content)
|r $ %{} :Leaf (:at 1610732444355) (:by |wA2nX3K2f) (:text |url)
|P $ %{} :Expr (:at 1610732444355) (:by |wA2nX3K2f)
:data $ {}
|T $ %{} :Leaf (:at 1610732444355) (:by |wA2nX3K2f) (:text |split)
|j $ %{} :Leaf (:at 1610732444355) (:by |wA2nX3K2f) (:text |useful)
|r $ %{} :Leaf (:at 1610732444355) (:by |wA2nX3K2f) (:text "||](")
|T $ %{} :Expr (:at 1505725057558) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1505725057558) (:by |root) (:text |img)
|j $ %{} :Expr (:at 1505725057558) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1505725057558) (:by |root) (:text |{})
|j $ %{} :Expr (:at 1505725057558) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1505725057558) (:by |root) (:text |:src)
|j $ %{} :Leaf (:at 1505725057558) (:by |root) (:text |url)
|n $ %{} :Expr (:at 1701525425609) (:by |wA2nX3K2f)
:data $ {}
|T $ %{} :Leaf (:at 1701525432149) (:by |wA2nX3K2f) (:text |:class-name)
|b $ %{} :Leaf (:at 1701525435787) (:by |wA2nX3K2f) (:text |style-image)
|r $ %{} :Expr (:at 1505725057558) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1505725057558) (:by |root) (:text |:alt)
|j $ %{} :Leaf (:at 1505725057558) (:by |root) (:text |content)
|comp-line $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1505725057558) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1505727713665) (:by |root) (:text |defcomp)
|j $ %{} :Leaf (:at 1505725057558) (:by |root) (:text |comp-line)
|n $ %{} :Expr (:at 1505725057558) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1505725057558) (:by |root) (:text |line)
|r $ %{} :Expr (:at 1505725057558) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1505725057558) (:by |root) (:text |cond)
|a $ %{} :Expr (:at 1505725057558) (:by nil)
:data $ {}
|T $ %{} :Expr (:at 1505725057558) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1610732235103) (:by |wA2nX3K2f) (:text |starts-with?)
|j $ %{} :Leaf (:at 1505725057558) (:by |root) (:text |line)
|r $ %{} :Leaf (:at 1505725057558) (:by |root) (:text "||# ")
|j $ %{} :Expr (:at 1610733156408) (:by |wA2nX3K2f)
:data $ {}
|T $ %{} :Leaf (:at 1610733156408) (:by |wA2nX3K2f) (:text |h1)
|b $ %{} :Expr (:at 1610734142430) (:by |wA2nX3K2f)
:data $ {}
|T $ %{} :Leaf (:at 1610734142835) (:by |wA2nX3K2f) (:text |{})
|j $ %{} :Leaf (:at 1610733156408) (:by |wA2nX3K2f) (:text |&)
|r $ %{} :Expr (:at 1610733156408) (:by |wA2nX3K2f)
:data $ {}
|T $ %{} :Leaf (:at 1610733156408) (:by |wA2nX3K2f) (:text |render-inline)
|j $ %{} :Expr (:at 1610733156408) (:by |wA2nX3K2f)
:data $ {}
|T $ %{} :Leaf (:at 1623694230810) (:by |wA2nX3K2f) (:text |&str:slice)
|j $ %{} :Leaf (:at 1610733156408) (:by |wA2nX3K2f) (:text |line)
|r $ %{} :Leaf (:at 1610733156408) (:by |wA2nX3K2f) (:text |2)
|h $ %{} :Expr (:at 1505725057558) (:by nil)
:data $ {}
|T $ %{} :Expr (:at 1505725057558) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1610732238962) (:by |wA2nX3K2f) (:text |starts-with?)
|j $ %{} :Leaf (:at 1505725057558) (:by |root) (:text |line)
|r $ %{} :Leaf (:at 1505725057558) (:by |root) (:text "||## ")
|j $ %{} :Expr (:at 1610733157934) (:by |wA2nX3K2f)
:data $ {}
|T $ %{} :Leaf (:at 1610733162108) (:by |wA2nX3K2f) (:text |h2)
|b $ %{} :Expr (:at 1610734144909) (:by |wA2nX3K2f)
:data $ {}
|T $ %{} :Leaf (:at 1610734144909) (:by |wA2nX3K2f) (:text |{})
|j $ %{} :Leaf (:at 1610733157934) (:by |wA2nX3K2f) (:text |&)
|r $ %{} :Expr (:at 1610733157934) (:by |wA2nX3K2f)
:data $ {}
|T $ %{} :Leaf (:at 1610733157934) (:by |wA2nX3K2f) (:text |render-inline)
|j $ %{} :Expr (:at 1610733157934) (:by |wA2nX3K2f)
:data $ {}
|T $ %{} :Leaf (:at 1623694233087) (:by |wA2nX3K2f) (:text |&str:slice)
|j $ %{} :Leaf (:at 1610733157934) (:by |wA2nX3K2f) (:text |line)
|r $ %{} :Leaf (:at 1610733164003) (:by |wA2nX3K2f) (:text |3)
|v $ %{} :Expr (:at 1505725057558) (:by nil)
:data $ {}
|T $ %{} :Expr (:at 1505725057558) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1610732240941) (:by |wA2nX3K2f) (:text |starts-with?)
|j $ %{} :Leaf (:at 1505725057558) (:by |root) (:text |line)
|r $ %{} :Leaf (:at 1505725057558) (:by |root) (:text "||### ")
|j $ %{} :Expr (:at 1610733167793) (:by |wA2nX3K2f)
:data $ {}
|T $ %{} :Leaf (:at 1610733170252) (:by |wA2nX3K2f) (:text |h3)
|b $ %{} :Expr (:at 1610734145994) (:by |wA2nX3K2f)
:data $ {}
|T $ %{} :Leaf (:at 1610734145994) (:by |wA2nX3K2f) (:text |{})
|j $ %{} :Leaf (:at 1610733167793) (:by |wA2nX3K2f) (:text |&)
|r $ %{} :Expr (:at 1624121037073) (:by |wA2nX3K2f)
:data $ {}
|T $ %{} :Leaf (:at 1624121037073) (:by |wA2nX3K2f) (:text |render-inline)
|j $ %{} :Expr (:at 1624121037073) (:by |wA2nX3K2f)
:data $ {}
|T $ %{} :Leaf (:at 1624121037073) (:by |wA2nX3K2f) (:text |&str:slice)
|j $ %{} :Leaf (:at 1624121037073) (:by |wA2nX3K2f) (:text |line)
|r $ %{} :Leaf (:at 1624121037073) (:by |wA2nX3K2f) (:text |4)
|w $ %{} :Expr (:at 1505725057558) (:by nil)
:data $ {}
|T $ %{} :Expr (:at 1505725057558) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1610732242389) (:by |wA2nX3K2f) (:text |starts-with?)
|j $ %{} :Leaf (:at 1505725057558) (:by |root) (:text |line)
|r $ %{} :Leaf (:at 1604993366873) (:by |wA2nX3K2f) (:text "||#### ")
|j $ %{} :Expr (:at 1610733174842) (:by |wA2nX3K2f)
:data $ {}
|T $ %{} :Leaf (:at 1610733176874) (:by |wA2nX3K2f) (:text |h4)
|b $ %{} :Expr (:at 1610734147486) (:by |wA2nX3K2f)
:data $ {}
|T $ %{} :Leaf (:at 1610734147486) (:by |wA2nX3K2f) (:text |{})
|j $ %{} :Leaf (:at 1610733174842) (:by |wA2nX3K2f) (:text |&)
|r $ %{} :Expr (:at 1624121038809) (:by |wA2nX3K2f)
:data $ {}
|T $ %{} :Leaf (:at 1624121038809) (:by |wA2nX3K2f) (:text |render-inline)
|j $ %{} :Expr (:at 1624121038809) (:by |wA2nX3K2f)
:data $ {}
|T $ %{} :Leaf (:at 1624121038809) (:by |wA2nX3K2f) (:text |&str:slice)
|j $ %{} :Leaf (:at 1624121038809) (:by |wA2nX3K2f) (:text |line)
|r $ %{} :Leaf (:at 1624121038809) (:by |wA2nX3K2f) (:text |5)
|x $ %{} :Expr (:at 1505725057558) (:by nil)
:data $ {}
|T $ %{} :Expr (:at 1505725057558) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1610732244014) (:by |wA2nX3K2f) (:text |starts-with?)
|j $ %{} :Leaf (:at 1505725057558) (:by |root) (:text |line)
|r $ %{} :Leaf (:at 1505725057558) (:by |root) (:text "||> ")
|j $ %{} :Expr (:at 1610733198882) (:by |wA2nX3K2f)
:data $ {}
|T $ %{} :Leaf (:at 1610733202609) (:by |wA2nX3K2f) (:text |blockquote)
|b $ %{} :Expr (:at 1610734148876) (:by |wA2nX3K2f)
:data $ {}
|T $ %{} :Leaf (:at 1610734148876) (:by |wA2nX3K2f) (:text |{})
|b $ %{} :Expr (:at 1701531488658) (:by |wA2nX3K2f)
:data $ {}
|T $ %{} :Leaf (:at 1701531491017) (:by |wA2nX3K2f) (:text |:class-name)
|b $ %{} :Leaf (:at 1701531494686) (:by |wA2nX3K2f) (:text |style-blockquote)
|j $ %{} :Leaf (:at 1610733198882) (:by |wA2nX3K2f) (:text |&)
|r $ %{} :Expr (:at 1624121040551) (:by |wA2nX3K2f)
:data $ {}
|T $ %{} :Leaf (:at 1624121040551) (:by |wA2nX3K2f) (:text |render-inline)
|j $ %{} :Expr (:at 1624121040551) (:by |wA2nX3K2f)
:data $ {}
|T $ %{} :Leaf (:at 1624121040551) (:by |wA2nX3K2f) (:text |&str:slice)
|j $ %{} :Leaf (:at 1624121040551) (:by |wA2nX3K2f) (:text |line)
|r $ %{} :Leaf (:at 1624121040551) (:by |wA2nX3K2f) (:text |2)
|xT $ %{} :Expr (:at 1736013198377) (:by |wA2nX3K2f)
:data $ {}
|T $ %{} :Expr (:at 1736013200309) (:by |wA2nX3K2f)
:data $ {}
|T $ %{} :Leaf (:at 1736013207268) (:by |wA2nX3K2f) (:text |starts-with?)
|b $ %{} :Leaf (:at 1736013207992) (:by |wA2nX3K2f) (:text |line)
|h $ %{} :Leaf (:at 1736013209260) (:by |wA2nX3K2f) (:text "|\" ")
|b $ %{} :Expr (:at 1736013832772) (:by |wA2nX3K2f)
:data $ {}
|D $ %{} :Leaf (:at 1736013834600) (:by |wA2nX3K2f) (:text |let)
|L $ %{} :Expr (:at 1736013834855) (:by |wA2nX3K2f)
:data $ {}
|T $ %{} :Expr (:at 1736013834986) (:by |wA2nX3K2f)
:data $ {}
|T $ %{} :Leaf (:at 1736013836897) (:by |wA2nX3K2f) (:text |content)
|b $ %{} :Expr (:at 1736013841763) (:by |wA2nX3K2f)
:data $ {}
|T $ %{} :Leaf (:at 1736013841763) (:by |wA2nX3K2f) (:text |.!trimLeft)
|b $ %{} :Leaf (:at 1736013841763) (:by |wA2nX3K2f) (:text |line)
|b $ %{} :Expr (:at 1736013843506) (:by |wA2nX3K2f)
:data $ {}
|T $ %{} :Leaf (:at 1736013848278) (:by |wA2nX3K2f) (:text |space-size)
|b $ %{} :Expr (:at 1736013849583) (:by |wA2nX3K2f)
:data $ {}
|T $ %{} :Leaf (:at 1736013859173) (:by |wA2nX3K2f) (:text |&-)
|b $ %{} :Expr (:at 1736013850579) (:by |wA2nX3K2f)
:data $ {}
|T $ %{} :Leaf (:at 1736013851262) (:by |wA2nX3K2f) (:text |count)
|b $ %{} :Leaf (:at 1736013853009) (:by |wA2nX3K2f) (:text |line)
|h $ %{} :Expr (:at 1736013850579) (:by |wA2nX3K2f)
:data $ {}
|T $ %{} :Leaf (:at 1736013851262) (:by |wA2nX3K2f) (:text |count)
|b $ %{} :Leaf (:at 1736013857473) (:by |wA2nX3K2f) (:text |content)
|h $ %{} :Expr (:at 1736014051665) (:by |wA2nX3K2f)
:data $ {}
|T $ %{} :Leaf (:at 1736014053773) (:by |wA2nX3K2f) (:text |spaces)
|b $ %{} :Expr (:at 1736014054698) (:by |wA2nX3K2f)
:data $ {}
|T $ %{} :Leaf (:at 1736014057464) (:by |wA2nX3K2f) (:text |.!slice)
|b $ %{} :Leaf (:at 1736014059637) (:by |wA2nX3K2f) (:text |line)
|h $ %{} :Leaf (:at 1736014061656) (:by |wA2nX3K2f) (:text |0)
|l $ %{} :Leaf (:at 1736014064052) (:by |wA2nX3K2f) (:text |space-size)
|T $ %{} :Expr (:at 1736013256202) (:by |wA2nX3K2f)
:data $ {}
|T $ %{} :Leaf (:at 1736013257180) (:by |wA2nX3K2f) (:text |div)
|b $ %{} :Expr (:at 1736013257495) (:by |wA2nX3K2f)
:data $ {}
|T $ %{} :Leaf (:at 1736013257839) (:by |wA2nX3K2f) (:text |{})
|e $ %{} :Expr (:at 1736014073840) (:by |wA2nX3K2f)
:data $ {}
|T $ %{} :Leaf (:at 1736014074175) (:by |wA2nX3K2f) (:text |<>)
|b $ %{} :Expr (:at 1736014130760) (:by |wA2nX3K2f)
:data $ {}
|D $ %{} :Leaf (:at 1736014131442) (:by |wA2nX3K2f) (:text |str)
|T $ %{} :Leaf (:at 1736014076054) (:by |wA2nX3K2f) (:text |spaces)
|b $ %{} :Leaf (:at 1736014132248) (:by |wA2nX3K2f) (:text |spaces)
|h $ %{} :Leaf (:at 1736014112418) (:by |wA2nX3K2f) (:text |style-indent)
|h $ %{} :Expr (:at 1736013304609) (:by |wA2nX3K2f)
:data $ {}
|T $ %{} :Leaf (:at 1736013308465) (:by |wA2nX3K2f) (:text |comp-line)
|b $ %{} :Expr (:at 1736013314866) (:by |wA2nX3K2f)
:data $ {}
|D $ %{} :Leaf (:at 1736013367630) (:by |wA2nX3K2f) (:text |.!trimLeft)
|T $ %{} :Leaf (:at 1736013309833) (:by |wA2nX3K2f) (:text |line)
|y $ %{} :Expr (:at 1505725057558) (:by nil)
:data $ {}
|T $ %{} :Expr (:at 1701531610932) (:by |wA2nX3K2f)
:data $ {}
|D $ %{} :Leaf (:at 1701531611530) (:by |wA2nX3K2f) (:text |or)
|T $ %{} :Expr (:at 1505725057558) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1610732569696) (:by |wA2nX3K2f) (:text |starts-with?)
|j $ %{} :Leaf (:at 1505725057558) (:by |root) (:text |line)
|r $ %{} :Leaf (:at 1505725057558) (:by |root) (:text "||* ")
|b $ %{} :Expr (:at 1701531613289) (:by |wA2nX3K2f)
:data $ {}
|T $ %{} :Leaf (:at 1701531613289) (:by |wA2nX3K2f) (:text |starts-with?)
|b $ %{} :Leaf (:at 1701531613289) (:by |wA2nX3K2f) (:text |line)
|h $ %{} :Leaf (:at 1701531613289) (:by |wA2nX3K2f) (:text "||- ")
|j $ %{} :Expr (:at 1610733209022) (:by |wA2nX3K2f)
:data $ {}
|T $ %{} :Leaf (:at 1612254635649) (:by |wA2nX3K2f) (:text |li)
|b $ %{} :Expr (:at 1610734150301) (:by |wA2nX3K2f)
:data $ {}
|T $ %{} :Leaf (:at 1610734150301) (:by |wA2nX3K2f) (:text |{})
|b $ %{} :Expr (:at 1701531619168) (:by |wA2nX3K2f)
:data $ {}
|T $ %{} :Leaf (:at 1701531621721) (:by |wA2nX3K2f) (:text |:class-name)
|b $ %{} :Leaf (:at 1701531629243) (:by |wA2nX3K2f) (:text |style-line-list)
|j $ %{} :Leaf (:at 1610733209022) (:by |wA2nX3K2f) (:text |&)
|r $ %{} :Expr (:at 1624121043142) (:by |wA2nX3K2f)
:data $ {}
|T $ %{} :Leaf (:at 1624121043142) (:by |wA2nX3K2f) (:text |render-inline)
|j $ %{} :Expr (:at 1624121043142) (:by |wA2nX3K2f)
:data $ {}
|T $ %{} :Leaf (:at 1624121043142) (:by |wA2nX3K2f) (:text |&str:slice)
|j $ %{} :Leaf (:at 1624121043142) (:by |wA2nX3K2f) (:text |line)
|r $ %{} :Leaf (:at 1624121043142) (:by |wA2nX3K2f) (:text |2)
|yD $ %{} :Expr (:at 1651234447711) (:by |wA2nX3K2f)
:data $ {}
|T $ %{} :Expr (:at 1651234449684) (:by |wA2nX3K2f)
:data $ {}
|T $ %{} :Leaf (:at 1651234449684) (:by |wA2nX3K2f) (:text |starts-with?)
|b $ %{} :Leaf (:at 1651234449684) (:by |wA2nX3K2f) (:text |line)
|h $ %{} :Leaf (:at 1651234455133) (:by |wA2nX3K2f) (:text "||#!html ")
|b $ %{} :Expr (:at 1651234501540) (:by |wA2nX3K2f)
:data $ {}
|T $ %{} :Leaf (:at 1651234501540) (:by |wA2nX3K2f) (:text |div)
|b $ %{} :Expr (:at 1651234501540) (:by |wA2nX3K2f)
:data $ {}
|T $ %{} :Leaf (:at 1651234501540) (:by |wA2nX3K2f) (:text |{})
|b $ %{} :Expr (:at 1651234501540) (:by |wA2nX3K2f)
:data $ {}
|T $ %{} :Leaf (:at 1651234501540) (:by |wA2nX3K2f) (:text |:class-name)
|b $ %{} :Leaf (:at 1651234501540) (:by |wA2nX3K2f) (:text "|\"html-container")
|h $ %{} :Expr (:at 1651234501540) (:by |wA2nX3K2f)
:data $ {}
|T $ %{} :Leaf (:at 1651234532795) (:by |wA2nX3K2f) (:text |:innerHTML)
|b $ %{} :Expr (:at 1651234501540) (:by |wA2nX3K2f)
:data $ {}
|T $ %{} :Leaf (:at 1651234501540) (:by |wA2nX3K2f) (:text |.trim)
|b $ %{} :Expr (:at 1651234501540) (:by |wA2nX3K2f)
:data $ {}
|T $ %{} :Leaf (:at 1651234501540) (:by |wA2nX3K2f) (:text |&str:slice)
|b $ %{} :Leaf (:at 1651234501540) (:by |wA2nX3K2f) (:text |line)
|h $ %{} :Leaf (:at 1651234501540) (:by |wA2nX3K2f) (:text |7)
|yT $ %{} :Expr (:at 1505725057558) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1610732572111) (:by |wA2nX3K2f) (:text |true)
|j $ %{} :Expr (:at 1505725057558) (:by nil)
:data $ {}
|D $ %{} :Leaf (:at 1612253094691) (:by |wA2nX3K2f) (:text |div)
|j $ %{} :Expr (:at 1505725057558) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1505725057558) (:by |root) (:text |{})
|n $ %{} :Leaf (:at 1612253103294) (:by |wA2nX3K2f) (:text |&)
|r $ %{} :Expr (:at 1624121045270) (:by |wA2nX3K2f)
:data $ {}
|T $ %{} :Leaf (:at 1624121045270) (:by |wA2nX3K2f) (:text |render-inline)
|j $ %{} :Leaf (:at 1624121045270) (:by |wA2nX3K2f) (:text |line)
|comp-link $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1505725057558) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1505727764748) (:by |root) (:text |defn)
|j $ %{} :Leaf (:at 1505725057558) (:by |root) (:text |comp-link)
|r $ %{} :Expr (:at 1505725057558) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1505725057558) (:by |root) (:text |chunk)
|v $ %{} :Expr (:at 1505725057558) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1505725057558) (:by |root) (:text |let)
|j $ %{} :Expr (:at 1505725057558) (:by nil)
:data $ {}
|T $ %{} :Expr (:at 1505725057558) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1505725057558) (:by |root) (:text |useful)
|j $ %{} :Expr (:at 1505725057558) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1623694267639) (:by |wA2nX3K2f) (:text |&str:slice)
|j $ %{} :Leaf (:at 1505725057558) (:by |root) (:text |chunk)
|r $ %{} :Leaf (:at 1505725057558) (:by |root) (:text |1)
|v $ %{} :Expr (:at 1505725057558) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1505725057558) (:by |root) (:text |-)
|j $ %{} :Expr (:at 1505725057558) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1505725057558) (:by |root) (:text |count)
|j $ %{} :Leaf (:at 1505725057558) (:by |root) (:text |chunk)
|r $ %{} :Leaf (:at 1505725057558) (:by |root) (:text |1)
|r $ %{} :Expr (:at 1610732390750) (:by |wA2nX3K2f)
:data $ {}
|D $ %{} :Leaf (:at 1610732392388) (:by |wA2nX3K2f) (:text |let[])
|L $ %{} :Expr (:at 1610732396438) (:by |wA2nX3K2f)
:data $ {}
|j $ %{} :Leaf (:at 1610732396438) (:by |wA2nX3K2f) (:text |content)
|r $ %{} :Leaf (:at 1610732396438) (:by |wA2nX3K2f) (:text |url)
|P $ %{} :Expr (:at 1610732396438) (:by |wA2nX3K2f)
:data $ {}
|T $ %{} :Leaf (:at 1610732425420) (:by |wA2nX3K2f) (:text |split)
|j $ %{} :Leaf (:at 1610732396438) (:by |wA2nX3K2f) (:text |useful)
|r $ %{} :Leaf (:at 1610732396438) (:by |wA2nX3K2f) (:text "||](")
|T $ %{} :Expr (:at 1701533063576) (:by |wA2nX3K2f)
:data $ {}
|D $ %{} :Leaf (:at 1701533064478) (:by |wA2nX3K2f) (:text |span)
|L $ %{} :Expr (:at 1701533065101) (:by |wA2nX3K2f)
:data $ {}
|T $ %{} :Leaf (:at 1701533065367) (:by |wA2nX3K2f) (:text |{})
|T $ %{} :Expr (:at 1505725057558) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1505725057558) (:by |root) (:text |if)
|j $ %{} :Expr (:at 1505725057558) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1505725057558) (:by |root) (:text |and)
|j $ %{} :Expr (:at 1505725057558) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1610732406138) (:by |wA2nX3K2f) (:text |starts-with?)
|j $ %{} :Leaf (:at 1505725057558) (:by |root) (:text |content)
|r $ %{} :Leaf (:at 1505725057558) (:by |root) (:text "||`")
|r $ %{} :Expr (:at 1505725057558) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1610732408009) (:by |wA2nX3K2f) (:text |ends-with?)
|j $ %{} :Leaf (:at 1505725057558) (:by |root) (:text |content)
|r $ %{} :Leaf (:at 1505725057558) (:by |root) (:text "||`")
|r $ %{} :Expr (:at 1505725057558) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1505725057558) (:by |root) (:text |a)
|j $ %{} :Expr (:at 1505725057558) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1505725057558) (:by |root) (:text |{})
|b $ %{} :Expr (:at 1701533118326) (:by |wA2nX3K2f)
:data $ {}
|T $ %{} :Leaf (:at 1701533118326) (:by |wA2nX3K2f) (:text |:class-name)
|b $ %{} :Expr (:at 1701533129201) (:by |wA2nX3K2f)
:data $ {}
|D $ %{} :Leaf (:at 1701533130718) (:by |wA2nX3K2f) (:text |str-spaced)
|L $ %{} :Leaf (:at 1701533139535) (:by |wA2nX3K2f) (:text |css/link)
|T $ %{} :Leaf (:at 1701533118326) (:by |wA2nX3K2f) (:text |style-default-link)
|j $ %{} :Expr (:at 1505725057558) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1505725057558) (:by |root) (:text |:href)
|j $ %{} :Leaf (:at 1505725057558) (:by |root) (:text |url)
|r $ %{} :Expr (:at 1505725057558) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1505725057558) (:by |root) (:text |:target)
|j $ %{} :Leaf (:at 1505725057558) (:by |root) (:text ||_blank)
|r $ %{} :Expr (:at 1505725057558) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1505725057558) (:by |root) (:text |code)
|j $ %{} :Expr (:at 1505725057558) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1505725057558) (:by |root) (:text |{})
|j $ %{} :Expr (:at 1505725057558) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1505725057558) (:by |root) (:text |:inner-text)
|j $ %{} :Expr (:at 1505725057558) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1623694269865) (:by |wA2nX3K2f) (:text |&str:slice)
|j $ %{} :Leaf (:at 1505725057558) (:by |root) (:text |content)
|r $ %{} :Leaf (:at 1505725057558) (:by |root) (:text |1)
|v $ %{} :Expr (:at 1505725057558) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1505725057558) (:by |root) (:text |dec)
|j $ %{} :Expr (:at 1505725057558) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1505725057558) (:by |root) (:text |count)