forked from siyuan-note/siyuan
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path20211226120247-63nd8y5.sy
More file actions
968 lines (968 loc) · 20.9 KB
/
20211226120247-63nd8y5.sy
File metadata and controls
968 lines (968 loc) · 20.9 KB
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
{
"ID": "20211226120247-63nd8y5",
"Spec": "1",
"Type": "NodeDocument",
"Properties": {
"id": "20211226120247-63nd8y5",
"title": "引用内容塊",
"type": "doc",
"updated": "20250311195912"
},
"Children": [
{
"ID": "20211226120337-x5qwass",
"Type": "NodeHeading",
"HeadingLevel": 2,
"Properties": {
"id": "20211226120337-x5qwass",
"updated": "20250311195846"
},
"Children": [
{
"Type": "NodeText",
"Data": "概述"
}
]
},
{
"ID": "20220623200737-sx458du",
"Type": "NodeParagraph",
"Properties": {
"id": "20220623200737-sx458du",
"updated": "20250311195846"
},
"Children": [
{
"Type": "NodeText",
"Data": "輸入 "
},
{
"Type": "NodeTextMark",
"TextMarkType": "code",
"TextMarkTextContent": "(("
},
{
"Type": "NodeText",
"Data": " 後將觸發內容塊引用搜索,繼續輸入作為搜索關鍵字,在搜索結果中使用上下鍵選定後回車就可以完成內容塊的引用了。建立好內容塊引用後,鼠標懸浮在錨文字上後將彈出預覽浮層,展現被引用的內容塊(定義塊)。"
},
{
"Type": "NodeTextMark",
"TextMarkType": "tag",
"TextMarkTextContent": "內容塊/引用"
},
{
"Type": "NodeText",
"Data": ""
}
]
},
{
"ID": "20211226120337-nfx8mlg",
"Type": "NodeHeading",
"HeadingLevel": 2,
"Properties": {
"id": "20211226120337-nfx8mlg",
"updated": "20230630092034"
},
"Children": [
{
"Type": "NodeText",
"Data": "連結方向"
}
]
},
{
"ID": "20211226120337-vc0412c",
"Type": "NodeList",
"ListData": {},
"Properties": {
"id": "20211226120337-vc0412c",
"updated": "20211226153324"
},
"Children": [
{
"ID": "20211226120337-y3gytco",
"Type": "NodeListItem",
"ListData": {
"BulletChar": 42,
"Marker": "Kg=="
},
"Properties": {
"id": "20211226120337-y3gytco",
"updated": "20211226153322"
},
"Children": [
{
"ID": "20211226120337-97ez2pg",
"Type": "NodeParagraph",
"Properties": {
"id": "20211226120337-97ez2pg",
"updated": "20211226153322"
},
"Children": [
{
"Type": "NodeText",
"Data": "正向連結(Forwardlink),即當前內容塊使用了哪些其他內容塊"
}
]
}
]
},
{
"ID": "20211226120337-y5w0fua",
"Type": "NodeListItem",
"ListData": {
"BulletChar": 42,
"Marker": "Kg=="
},
"Properties": {
"id": "20211226120337-y5w0fua",
"updated": "20211226153324"
},
"Children": [
{
"ID": "20211226120337-1ss1org",
"Type": "NodeParagraph",
"Properties": {
"id": "20211226120337-1ss1org",
"updated": "20211226153324"
},
"Children": [
{
"Type": "NodeText",
"Data": "反向連結(Backlink),即當前內容塊被那些其他內容塊使用了"
}
]
}
]
}
]
},
{
"ID": "20211226120337-toyoo9f",
"Type": "NodeParagraph",
"Properties": {
"id": "20211226120337-toyoo9f",
"updated": "20211228131019"
},
"Children": [
{
"Type": "NodeText",
"Data": "正向連結包含在當前塊的內容中,我們可以很直觀的看到。反向連結需要在其他文檔中搜索才能知道,而恰恰是這些訊息對我們比較有價值。我們可以通過以下兩種方式來幫助我們更好的掌握知識點或者發散思路:"
}
]
},
{
"ID": "20211226120337-ugzfcwd",
"Type": "NodeList",
"ListData": {},
"Properties": {
"id": "20211226120337-ugzfcwd",
"updated": "20211227210423"
},
"Children": [
{
"ID": "20211226120337-063naya",
"Type": "NodeListItem",
"ListData": {
"BulletChar": 42,
"Marker": "Kg=="
},
"Properties": {
"id": "20211226120337-063naya",
"updated": "20211227210417"
},
"Children": [
{
"ID": "20211226120337-eq78a5a",
"Type": "NodeParagraph",
"Properties": {
"id": "20211226120337-eq78a5a",
"updated": "20211227210417"
},
"Children": [
{
"Type": "NodeTextMark",
"TextMarkType": "block-ref",
"TextMarkBlockRefID": "20211226120415-akhb2fd",
"TextMarkBlockRefSubtype": "s",
"TextMarkTextContent": "關系圖"
},
{
"Type": "NodeText",
"Data": ":瀏覽內容塊之間的正向和反向連結關系"
}
]
}
]
},
{
"ID": "20211226120337-5t8nuey",
"Type": "NodeListItem",
"ListData": {
"BulletChar": 42,
"Marker": "Kg=="
},
"Properties": {
"id": "20211226120337-5t8nuey",
"updated": "20211227210423"
},
"Children": [
{
"ID": "20211226120337-ajml6vu",
"Type": "NodeParagraph",
"Properties": {
"id": "20211226120337-ajml6vu",
"updated": "20211227210423"
},
"Children": [
{
"Type": "NodeTextMark",
"TextMarkType": "block-ref",
"TextMarkBlockRefID": "20211226120415-p3ajlx2",
"TextMarkBlockRefSubtype": "s",
"TextMarkTextContent": "反向連結"
},
{
"Type": "NodeText",
"Data": ":以文本列表的方式展現當前內容塊的反向連結"
}
]
}
]
}
]
},
{
"ID": "20220623200754-u00gfsg",
"Type": "NodeHeading",
"HeadingLevel": 2,
"Properties": {
"id": "20220623200754-u00gfsg",
"updated": "20250311195912"
},
"Children": [
{
"Type": "NodeText",
"Data": "錨文字"
}
]
},
{
"ID": "20220623200754-gwc1rym",
"Type": "NodeParagraph",
"Properties": {
"id": "20220623200754-gwc1rym",
"updated": "20220623200754"
},
"Children": [
{
"Type": "NodeText",
"Data": "錨文字即渲染引用時看到的文字,分為靜態錨文字和動態錨文字:"
}
]
},
{
"ID": "20220623200754-doe075z",
"Type": "NodeList",
"ListData": {},
"Properties": {
"id": "20220623200754-doe075z",
"updated": "20220623200754"
},
"Children": [
{
"ID": "20220623200754-sd1ge5a",
"Type": "NodeListItem",
"ListData": {
"BulletChar": 42,
"Marker": "Kg=="
},
"Properties": {
"id": "20220623200754-sd1ge5a",
"updated": "20220623200754"
},
"Children": [
{
"ID": "20220623200754-c8pnbo0",
"Type": "NodeParagraph",
"Properties": {
"id": "20220623200754-c8pnbo0",
"updated": "20220623200754"
},
"Children": [
{
"Type": "NodeText",
"Data": "靜態錨文字:不會跟隨定義塊內容變化,即固定展現指定的內容"
}
]
}
]
},
{
"ID": "20220623200754-aiiq7z3",
"Type": "NodeListItem",
"ListData": {
"BulletChar": 42,
"Marker": "Kg=="
},
"Properties": {
"id": "20220623200754-aiiq7z3",
"updated": "20220623200754"
},
"Children": [
{
"ID": "20220623200754-4srcm5t",
"Type": "NodeParagraph",
"Properties": {
"id": "20220623200754-4srcm5t",
"updated": "20220623200754"
},
"Children": [
{
"Type": "NodeText",
"Data": "動態錨文字:跟隨定義塊內容變化,最大長度可在 "
},
{
"Type": "NodeTextMark",
"TextMarkType": "kbd",
"TextMarkTextContent": "設置"
},
{
"Type": "NodeText",
"Data": " - "
},
{
"Type": "NodeTextMark",
"TextMarkType": "kbd",
"TextMarkTextContent": "編輯器"
},
{
"Type": "NodeText",
"Data": " - "
},
{
"Type": "NodeTextMark",
"TextMarkType": "kbd",
"TextMarkTextContent": "塊引動態錨文字最大長度"
},
{
"Type": "NodeText",
"Data": " 中設置,最長支持 "
},
{
"Type": "NodeTextMark",
"TextMarkType": "code",
"TextMarkTextContent": "5120"
},
{
"Type": "NodeText",
"Data": " 個字符"
}
]
}
]
}
]
},
{
"ID": "20220623200754-epcli9r",
"Type": "NodeParagraph",
"Properties": {
"id": "20220623200754-epcli9r",
"updated": "20220623200754"
},
"Children": [
{
"Type": "NodeText",
"Data": "修改錨文字的方式如下:"
}
]
},
{
"ID": "20220623200754-0dmv2ty",
"Type": "NodeList",
"ListData": {},
"Properties": {
"id": "20220623200754-0dmv2ty",
"updated": "20220623200754"
},
"Children": [
{
"ID": "20220623200754-vqf7x49",
"Type": "NodeListItem",
"ListData": {
"BulletChar": 42,
"Marker": "Kg=="
},
"Properties": {
"id": "20220623200754-vqf7x49",
"updated": "20220623200754"
},
"Children": [
{
"ID": "20220623200754-43rmvek",
"Type": "NodeParagraph",
"Properties": {
"id": "20220623200754-43rmvek",
"updated": "20220623200754"
},
"Children": [
{
"Type": "NodeText",
"Data": "將游標插入符移入"
},
{
"Type": "NodeText",
"Data": "引用"
},
{
"Type": "NodeText",
"Data": "元素,直接修改內容,這樣會將該"
},
{
"Type": "NodeText",
"Data": "引用"
},
{
"Type": "NodeText",
"Data": "的錨文字設置為靜態錨文字"
}
]
}
]
},
{
"ID": "20220623200754-w895rvz",
"Type": "NodeListItem",
"ListData": {
"BulletChar": 42,
"Marker": "Kg=="
},
"Properties": {
"id": "20220623200754-w895rvz",
"updated": "20220623200754"
},
"Children": [
{
"ID": "20220623200754-3muj6kg",
"Type": "NodeParagraph",
"Properties": {
"id": "20220623200754-3muj6kg",
"updated": "20220623200754"
},
"Children": [
{
"Type": "NodeText",
"Data": "右鍵單擊"
},
{
"Type": "NodeText",
"Data": "引用"
},
{
"Type": "NodeText",
"Data": "元素後在彈出的菜單中修改錨文字,這樣得到的錨文字也是靜態錨文字"
}
]
}
]
},
{
"ID": "20220623200754-hv4k525",
"Type": "NodeListItem",
"ListData": {
"BulletChar": 42,
"Marker": "Kg=="
},
"Properties": {
"id": "20220623200754-hv4k525",
"updated": "20220623200754"
},
"Children": [
{
"ID": "20220623200754-3prcu11",
"Type": "NodeParagraph",
"Properties": {
"id": "20220623200754-3prcu11",
"updated": "20220623200754"
},
"Children": [
{
"Type": "NodeText",
"Data": "右鍵單擊"
},
{
"Type": "NodeText",
"Data": "引用"
},
{
"Type": "NodeText",
"Data": "元素後在彈出的菜單中清空錨文字,這樣將使用動態錨文字"
}
]
}
]
}
]
},
{
"ID": "20230420185856-hoesuce",
"Type": "NodeParagraph",
"Properties": {
"id": "20230420185856-hoesuce",
"updated": "20230420185856"
},
"Children": [
{
"Type": "NodeText",
"Data": "在 "
},
{
"Type": "NodeTextMark",
"TextMarkType": "code",
"TextMarkTextContent": "(("
},
{
"Type": "NodeText",
"Data": " 搜索結果列表中:"
}
]
},
{
"ID": "20230420185856-fpkt2wv",
"Type": "NodeList",
"ListData": {},
"Properties": {
"id": "20230420185856-fpkt2wv",
"updated": "20250311195912"
},
"Children": [
{
"ID": "20230420185856-4v3g6nz",
"Type": "NodeListItem",
"ListData": {
"BulletChar": 42,
"Marker": "Kg=="
},
"Properties": {
"id": "20230420185856-4v3g6nz",
"updated": "20250311195908"
},
"Children": [
{
"ID": "20230420185856-tnhsmet",
"Type": "NodeParagraph",
"Properties": {
"id": "20230420185856-tnhsmet",
"updated": "20250311195908"
},
"Children": [
{
"Type": "NodeText",
"Data": "直接 "
},
{
"Type": "NodeTextMark",
"TextMarkType": "kbd",
"TextMarkTextContent": "回車"
},
{
"Type": "NodeText",
"Data": " 或者 "
},
{
"Type": "NodeTextMark",
"TextMarkType": "kbd",
"TextMarkTextContent": "點擊"
},
{
"Type": "NodeText",
"Data": " 將使用動態錨文字"
}
]
}
]
},
{
"ID": "20230420185856-jg6anpy",
"Type": "NodeListItem",
"ListData": {
"BulletChar": 42,
"Marker": "Kg=="
},
"Properties": {
"id": "20230420185856-jg6anpy",
"updated": "20250311195912"
},
"Children": [
{
"ID": "20230420185856-nh72xao",
"Type": "NodeParagraph",
"Properties": {
"id": "20230420185856-nh72xao",
"updated": "20250311195912"
},
"Children": [
{
"Type": "NodeText",
"Data": "按住 "
},
{
"Type": "NodeTextMark",
"TextMarkType": "kbd",
"TextMarkTextContent": "Ctrl"
},
{
"Type": "NodeText",
"Data": "+"
},
{
"Type": "NodeTextMark",
"TextMarkType": "kbd",
"TextMarkTextContent": "回車"
},
{
"Type": "NodeText",
"Data": " 或者 "
},
{
"Type": "NodeTextMark",
"TextMarkType": "kbd",
"TextMarkTextContent": "Ctrl"
},
{
"Type": "NodeText",
"Data": "+"
},
{
"Type": "NodeTextMark",
"TextMarkType": "kbd",
"TextMarkTextContent": "點擊"
},
{
"Type": "NodeText",
"Data": " 將使用靜態錨文字"
}
]
}
]
}
]
},
{
"ID": "20230420123224-22gd6st",
"Type": "NodeHeading",
"HeadingLevel": 2,
"Properties": {
"id": "20230420123224-22gd6st",
"updated": "20230420123224"
},
"Children": [
{
"Type": "NodeText",
"Data": "篩選"
}
]
},
{
"ID": "20230518100654-6zhp6jh",
"Type": "NodeParagraph",
"Properties": {
"id": "20230518100654-6zhp6jh",
"updated": "20230518100713"
},
"Children": [
{
"Type": "NodeText",
"Data": "在 "
},
{
"Type": "NodeTextMark",
"TextMarkType": "kbd",
"TextMarkTextContent": "設置"
},
{
"Type": "NodeText",
"Data": " - "
},
{
"Type": "NodeTextMark",
"TextMarkType": "kbd",
"TextMarkTextContent": "編輯器"
},
{
"Type": "NodeText",
"Data": " 中啟用 "
},
{
"Type": "NodeTextMark",
"TextMarkType": "kbd",
"TextMarkTextContent": "[[ 僅搜索文檔"
},
{
"Type": "NodeText",
"Data": " 後:"
}
]
},
{
"ID": "20230420123224-9l7kdi7",
"Type": "NodeList",
"ListData": {},
"Properties": {
"id": "20230420123224-9l7kdi7",
"updated": "20230820102920"
},
"Children": [
{
"ID": "20230420123224-arcczbk",
"Type": "NodeListItem",
"ListData": {
"BulletChar": 42,
"Marker": "Kg=="
},
"Properties": {
"id": "20230420123224-arcczbk",
"updated": "20230820102844"
},
"Children": [
{
"ID": "20230420123224-fo6o8dw",
"Type": "NodeParagraph",
"Properties": {
"id": "20230420123224-fo6o8dw",
"updated": "20230820102844"
},
"Children": [
{
"Type": "NodeText",
"Data": "使用 "
},
{
"Type": "NodeTextMark",
"TextMarkType": "code",
"TextMarkTextContent": "(("
},
{
"Type": "NodeText",
"Data": " 在"
},
{
"Type": "NodeTextMark",
"TextMarkType": "block-ref",
"TextMarkBlockRefID": "20211226120147-ib6yy3i",
"TextMarkBlockRefSubtype": "s",
"TextMarkTextContent": "所有類型的塊"
},
{
"Type": "NodeText",
"Data": "中進行搜索"
}
]
}
]
},
{
"ID": "20230420123224-7ivzvzz",
"Type": "NodeListItem",
"ListData": {
"BulletChar": 42,
"Marker": "Kg=="
},
"Properties": {
"id": "20230420123224-7ivzvzz",
"updated": "20230820102920"
},
"Children": [
{
"ID": "20230420123224-okegooe",
"Type": "NodeParagraph",
"Properties": {
"id": "20230420123224-okegooe",
"updated": "20230820102920"
},
"Children": [
{
"Type": "NodeText",
"Data": "使用 "
},
{
"Type": "NodeTextMark",
"TextMarkType": "code",
"TextMarkTextContent": "[["
},
{
"Type": "NodeText",
"Data": " 僅搜索"
},
{
"Type": "NodeTextMark",
"TextMarkType": "block-ref",
"TextMarkBlockRefID": "20211226120227-ub34qwj",
"TextMarkBlockRefSubtype": "s",
"TextMarkTextContent": "文檔塊"
}
]
}
]
}
]
},
{
"ID": "20220623200754-kdtvxt1",
"Type": "NodeHeading",
"HeadingLevel": 2,
"Properties": {
"id": "20220623200754-kdtvxt1",
"updated": "20220623200754"
},
"Children": [
{
"Type": "NodeText",
"Data": "語法"
}
]
},
{
"ID": "20220623200859-8ba6jm6",
"Type": "NodeParagraph",
"Properties": {
"id": "20220623200859-8ba6jm6",
"updated": "20220623200859"
},
"Children": [
{
"Type": "NodeText",
"Data": "除了使用 "
},
{
"Type": "NodeTextMark",
"TextMarkType": "code",
"TextMarkTextContent": "(("
},
{
"Type": "NodeText",
"Data": " 觸發引用搜索外,也可以直接使用語法 "
},
{
"Type": "NodeTextMark",
"TextMarkType": "code",
"TextMarkTextContent": "((id \"錨文字\"))"
},
{
"Type": "NodeText",
"Data": "。"
}
]
},
{
"ID": "20220623200859-xhkfk38",
"Type": "NodeList",
"ListData": {},
"Properties": {
"id": "20220623200859-xhkfk38",
"updated": "20221007175123"
},
"Children": [
{
"ID": "20220623200859-grgsuoo",
"Type": "NodeListItem",
"ListData": {
"BulletChar": 42,
"Marker": "Kg=="
},
"Properties": {
"id": "20220623200859-grgsuoo",
"updated": "20220623200859"
},
"Children": [
{
"ID": "20220623200859-pma9zfx",
"Type": "NodeParagraph",
"Properties": {
"id": "20220623200859-pma9zfx",
"updated": "20220623200859"
},
"Children": [
{
"Type": "NodeText",
"Data": "使用 "
},
{
"Type": "NodeTextMark",
"TextMarkType": "code",
"TextMarkTextContent": "\""
},
{
"Type": "NodeText",
"Data": " 包裹錨文為靜態錨文字"
}
]
}
]
},
{
"ID": "20220623200859-p2du2ng",
"Type": "NodeListItem",
"ListData": {
"BulletChar": 42,
"Marker": "Kg=="
},
"Properties": {
"id": "20220623200859-p2du2ng",
"updated": "20221007175123"
},
"Children": [
{
"ID": "20220623200859-xdls0yl",
"Type": "NodeParagraph",
"Properties": {
"id": "20220623200859-xdls0yl",
"updated": "20221007175123"
},
"Children": [
{
"Type": "NodeText",
"Data": "使用 "
},
{
"Type": "NodeTextMark",
"TextMarkType": "code",
"TextMarkTextContent": "\u0026apos;"
},
{
"Type": "NodeText",
"Data": " 包裹錨文字為動態錨文字,會在重建索引時自動重寫"
}
]
}
]
}
]
},
{
"ID": "20220623200859-x32n6yn",
"Type": "NodeParagraph",
"Properties": {
"id": "20220623200859-x32n6yn",
"updated": "20220623200859"
},
"Children": [
{
"Type": "NodeText",
"Data": "直接使用語法的主要場景是通過外部工具或者 API 建立引用,大部分情況下我們主要還是直接使用 "
},
{
"Type": "NodeTextMark",
"TextMarkType": "code",
"TextMarkTextContent": "(("
},
{
"Type": "NodeText",
"Data": " 觸發引用搜索來建立引用。"
}
]
}
]
}