forked from asciidoctor/asciidoctor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathxref.feature
1150 lines (967 loc) · 26.9 KB
/
xref.feature
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
# language: en
Feature: Cross References
In order to create cross references between sections and blocks in the current or neighboring document
As a writer
I want to be able to use the cross reference macro to compose these references
Scenario: Create a cross reference to a block that has explicit reftext
Given the AsciiDoc source
"""
:xrefstyle: full
See <<param-type-t>> to learn how it works.
.Parameterized Type <T>
[[param-type-t,that "<T>" thing]]
****
This sidebar describes what that <T> thing is all about.
****
"""
When it is converted to html
Then the result should contain the HTML structure
"""
|See
a<> href='#param-type-t' that "<T>" thing
|to learn how it works.
"""
When it is converted to docbook
Then the result should match the XML structure
"""
simpara
|See
xref<> linkend='param-type-t'/
|to learn how it works.
sidebar xml:id='param-type-t' xreflabel='that "<T>" thing'
title Parameterized Type <T>
simpara This sidebar describes what that <T> thing is all about.
"""
Scenario: Create a cross reference to a block that has explicit reftext with formatting
Given the AsciiDoc source
"""
:xrefstyle: full
There are cats, then there are the <<big-cats>>.
[[big-cats,*big* cats]]
== Big Cats
So ferocious.
"""
When it is converted to html
Then the result should contain the HTML structure
"""
|There are cats, then there are the
a< href='#big-cats' <strong>big</strong> cats
|.
"""
When it is converted to docbook
Then the result should match the XML structure
"""
simpara
|There are cats, then there are the
xref< linkend='big-cats'/
|.
section xml:id='big-cats' xreflabel='big cats'
title Big Cats
simpara So ferocious.
"""
Scenario: Create a full cross reference to a numbered section
Given the AsciiDoc source
"""
:sectnums:
:xrefstyle: full
See <<sect-features>> to find a complete list of features.
== About
[#sect-features]
=== Features
All the features are listed in this section.
"""
When it is converted to html
Then the result should contain the HTML structure
"""
|See
a<> href='#sect-features' Section 1.1, “Features”
|to find a complete list of features.
"""
Scenario: Create a short cross reference to a numbered section
Given the AsciiDoc source
"""
:sectnums:
:xrefstyle: short
See <<sect-features>> to find a complete list of features.
[#sect-features]
== Features
All the features are listed in this section.
"""
When it is converted to html
Then the result should contain the HTML structure
"""
|See
a<> href='#sect-features' Section 1
|to find a complete list of features.
"""
Scenario: Create a basic cross reference to an unnumbered section
Given the AsciiDoc source
"""
:xrefstyle: full
See <<sect-features>> to find a complete list of features.
[#sect-features]
== Features
All the features are listed in this section.
"""
When it is converted to html
Then the result should contain the HTML structure
"""
|See
a<> href='#sect-features' Features
|to find a complete list of features.
"""
Scenario: Create a basic cross reference to a numbered section when the section reference signifier is disabled
Given the AsciiDoc source
"""
:sectnums:
:xrefstyle: full
:!section-refsig:
See <<sect-features>> to find a complete list of features.
[#sect-features]
== Features
All the features are listed in this section.
"""
When it is converted to html
Then the result should contain the HTML structure
"""
|See
a<> href='#sect-features' 1, “Features”
|to find a complete list of features.
"""
Scenario: Create a full cross reference to a numbered chapter
Given the AsciiDoc source
"""
:doctype: book
:sectnums:
:xrefstyle: full
See <<chap-features>> to find a complete list of features.
[#chap-features]
== Features
All the features are listed in this chapter.
"""
When it is converted to html
Then the result should contain the HTML structure
"""
|See
a<> href='#chap-features' Chapter 1, <em>Features</em>
|to find a complete list of features.
"""
Scenario: Create a short cross reference to a numbered chapter
Given the AsciiDoc source
"""
:doctype: book
:sectnums:
:xrefstyle: short
See <<chap-features>> to find a complete list of features.
[#chap-features]
== Features
All the features are listed in this chapter.
"""
When it is converted to html
Then the result should contain the HTML structure
"""
|See
a<> href='#chap-features' Chapter 1
|to find a complete list of features.
"""
Scenario: Create a basic cross reference to a numbered chapter
Given the AsciiDoc source
"""
:doctype: book
:sectnums:
:xrefstyle: basic
See <<chap-features>> to find a complete list of features.
[#chap-features]
== Features
All the features are listed in this chapter.
"""
When it is converted to html
Then the result should contain the HTML structure
"""
|See
a<> href='#chap-features' <em>Features</em>
|to find a complete list of features.
"""
Scenario: Create a basic cross reference to an unnumbered chapter
Given the AsciiDoc source
"""
:doctype: book
:xrefstyle: full
See <<chap-features>> to find a complete list of features.
[#chap-features]
== Features
All the features are listed in this chapter.
"""
When it is converted to html
Then the result should contain the HTML structure
"""
|See
a<> href='#chap-features' <em>Features</em>
|to find a complete list of features.
"""
Scenario: Create a cross reference to a chapter using a custom chapter reference signifier
Given the AsciiDoc source
"""
:doctype: book
:sectnums:
:xrefstyle: full
:chapter-refsig: Ch
See <<chap-features>> to find a complete list of features.
[#chap-features]
== Features
All the features are listed in this chapter.
"""
When it is converted to html
Then the result should contain the HTML structure
"""
|See
a<> href='#chap-features' Ch 1, <em>Features</em>
|to find a complete list of features.
"""
Scenario: Create a full cross reference to a numbered part
Given the AsciiDoc source
"""
:doctype: book
:sectnums:
:partnums:
:xrefstyle: full
[preface]
= Preface
See <<p1>> for an introduction to the language.
[#p1]
= Language
== Syntax
This chapter covers the syntax.
"""
When it is converted to html
Then the result should contain the HTML structure
"""
|See
a<> href='#p1' Part I, “Language”
|for an introduction to the language.
"""
Scenario: Create a short cross reference to a numbered part
Given the AsciiDoc source
"""
:doctype: book
:sectnums:
:partnums:
:xrefstyle: short
[preface]
= Preface
See <<p1>> for an introduction to the language.
[#p1]
= Language
== Syntax
This chapter covers the syntax.
"""
When it is converted to html
Then the result should contain the HTML structure
"""
|See
a<> href='#p1' Part I
|for an introduction to the language.
"""
Scenario: Create a basic cross reference to a numbered part
Given the AsciiDoc source
"""
:doctype: book
:sectnums:
:partnums:
:xrefstyle: basic
[preface]
= Preface
See <<p1>> for an introduction to the language.
[#p1]
= Language
== Syntax
This chapter covers the syntax.
"""
When it is converted to html
Then the result should contain the HTML structure
"""
|See
a<> href='#p1' Language
|for an introduction to the language.
"""
Scenario: Create a basic cross reference to an unnumbered part
Given the AsciiDoc source
"""
:doctype: book
:sectnums:
:xrefstyle: full
[preface]
= Preface
See <<p1>> for an introduction to the language.
[#p1]
= Language
== Syntax
This chapter covers the syntax.
"""
When it is converted to html
Then the result should contain the HTML structure
"""
|See
a<> href='#p1' Language
|for an introduction to the language.
"""
@wip
Scenario: Create a cross reference to a part using a custom part reference signifier
Given the AsciiDoc source
"""
:doctype: book
:sectnums:
:partnums:
:xrefstyle: full
:part-refsig: P
[preface]
= Preface
See <<p1>> for an introduction to the language.
[#p1]
= Language
== Syntax
This chapter covers the syntax.
"""
When it is converted to html
Then the result should contain the HTML structure
"""
|See
a<> href='#p1' P I, “Language”
|for an introduction to the language.
"""
Scenario: Create a full cross reference to a numbered appendix
Given the AsciiDoc source
"""
:sectnums:
:xrefstyle: full
See <<app-features>> to find a complete list of features.
[appendix#app-features]
== Features
All the features are listed in this appendix.
"""
When it is converted to html
Then the result should contain the HTML structure
"""
|See
a<> href='#app-features' Appendix A, <em>Features</em>
|to find a complete list of features.
"""
Scenario: Create a short cross reference to a numbered appendix
Given the AsciiDoc source
"""
:sectnums:
:xrefstyle: short
See <<app-features>> to find a complete list of features.
[appendix#app-features]
== Features
All the features are listed in this appendix.
"""
When it is converted to html
Then the result should contain the HTML structure
"""
|See
a<> href='#app-features' Appendix A
|to find a complete list of features.
"""
Scenario: Create a full cross reference to an appendix even when section numbering is disabled
Given the AsciiDoc source
"""
:xrefstyle: full
See <<app-features>> to find a complete list of features.
[appendix#app-features]
== Features
All the features are listed in this appendix.
"""
When it is converted to html
Then the result should contain the HTML structure
"""
|See
a<> href='#app-features' Appendix A, <em>Features</em>
|to find a complete list of features.
"""
Scenario: Create a full cross reference to a numbered formal block
Given the AsciiDoc source
"""
:xrefstyle: full
See <<tbl-features>> to find a table of features.
.Features
[#tbl-features%autowidth]
|===
|Text formatting |Formats text for display.
|===
"""
When it is converted to html
Then the result should contain the HTML structure
"""
|See
a<> href='#tbl-features' Table 1, “Features”
|to find a table of features.
"""
Scenario: Create a short cross reference to a numbered formal block
Given the AsciiDoc source
"""
:xrefstyle: short
See <<tbl-features>> to find a table of features.
.Features
[#tbl-features%autowidth]
|===
|Text formatting |Formats text for display.
|===
"""
When it is converted to html
Then the result should contain the HTML structure
"""
|See
a<> href='#tbl-features' Table 1
|to find a table of features.
"""
Scenario: Create a basic cross reference to a numbered formal block when the caption prefix is disabled
Given the AsciiDoc source
"""
:xrefstyle: full
:!table-caption:
See <<tbl-features>> to find a table of features.
.Features
[#tbl-features%autowidth]
|===
|Text formatting |Formats text for display.
|===
"""
When it is converted to html
Then the result should contain the HTML structure
"""
|See
a<> href='#tbl-features' Features
|to find a table of features.
"""
Scenario: Create a cross reference to a numbered formal block with a custom caption prefix
Given the AsciiDoc source
"""
:xrefstyle: full
:table-caption: Tbl
See <<tbl-features>> to find a table of features.
.Features
[#tbl-features%autowidth]
|===
|Text formatting |Formats text for display.
|===
"""
When it is converted to html
Then the result should contain the HTML structure
"""
|See
a<> href='#tbl-features' Tbl 1, “Features”
|to find a table of features.
"""
Scenario: Create a full cross reference to a formal image block
Given the AsciiDoc source
"""
:xrefstyle: full
Behold, <<tiger>>!
.The ferocious Ghostscript tiger
[#tiger]
image::tiger.svg[Ghostscript tiger]
"""
When it is converted to html
Then the result should match the HTML structure
"""
.paragraph: p
|Behold,
a< href='#tiger' Figure 1, “The ferocious Ghostscript tiger”
|!
#tiger.imageblock
.content: img src='tiger.svg' alt='Ghostscript tiger'
.title Figure 1. The ferocious Ghostscript tiger
"""
Scenario: Create a short cross reference to a formal image block
Given the AsciiDoc source
"""
:xrefstyle: short
Behold, <<tiger>>!
.The ferocious Ghostscript tiger
[#tiger]
image::tiger.svg[Ghostscript tiger]
"""
When it is converted to html
Then the result should match the HTML structure
"""
.paragraph: p
|Behold,
a< href='#tiger' Figure 1
|!
#tiger.imageblock
.content: img src='tiger.svg' alt='Ghostscript tiger'
.title Figure 1. The ferocious Ghostscript tiger
"""
Scenario: Create a full cross reference to a block with an explicit caption
Given the AsciiDoc source
"""
:xrefstyle: full
See <<diagram-1>> and <<diagram-2>>.
.Managing Orders
[#diagram-1,caption="Diagram {counter:diag-number}. "]
image::managing-orders.png[Managing Orders]
.Managing Inventory
[#diagram-2,caption="Diagram {counter:diag-number}. "]
image::managing-inventory.png[Managing Inventory]
"""
When it is converted to html
Then the result should match the HTML structure
"""
.paragraph: p
|See
a<> href='#diagram-1' Diagram 1, “Managing Orders”
|and
a< href='#diagram-2' Diagram 2, “Managing Inventory”
|.
#diagram-1.imageblock
.content: img src='managing-orders.png' alt='Managing Orders'
.title Diagram 1. Managing Orders
#diagram-2.imageblock
.content: img src='managing-inventory.png' alt='Managing Inventory'
.title Diagram 2. Managing Inventory
"""
Scenario: Create a full cross reference to a block with an empty caption
Given the AsciiDoc source
"""
:xrefstyle: full
See <<ex1>>.
.Title
[#ex1,caption=]
====
content
====
"""
When it is converted to html
Then the result should match the HTML structure
"""
.paragraph: p
|See
a< href='#ex1' Title
|.
#ex1.exampleblock
.title Title
.content: .paragraph: p
|content
"""
Scenario: Create a short cross reference to a block with an explicit caption
Given the AsciiDoc source
"""
:xrefstyle: short
See <<diagram-1>> and <<diagram-2>>.
.Managing Orders
[#diagram-1,caption="Diagram {counter:diag-number}. "]
image::managing-orders.png[Managing Orders]
.Managing Inventory
[#diagram-2,caption="Diagram {counter:diag-number}. "]
image::managing-inventory.png[Managing Inventory]
"""
When it is converted to html
Then the result should match the HTML structure
"""
.paragraph: p
|See
a<> href='#diagram-1' Diagram 1
|and
a< href='#diagram-2' Diagram 2
|.
#diagram-1.imageblock
.content: img src='managing-orders.png' alt='Managing Orders'
.title Diagram 1. Managing Orders
#diagram-2.imageblock
.content: img src='managing-inventory.png' alt='Managing Inventory'
.title Diagram 2. Managing Inventory
"""
Scenario: Create a short cross reference to a block with an empty caption
Given the AsciiDoc source
"""
:xrefstyle: short
See <<ex1>>.
.Title
[#ex1,caption=]
====
content
====
"""
When it is converted to html
Then the result should match the HTML structure
"""
.paragraph: p
|See
a< href='#ex1' Title
|.
#ex1.exampleblock
.title Title
.content: .paragraph: p
|content
"""
Scenario: Create a basic cross reference to an unnumbered formal block
Given the AsciiDoc source
"""
:xrefstyle: full
See <<data>> to find the data used in this report.
.Data
[#data]
....
a
b
c
....
"""
When it is converted to html
Then the result should contain the HTML structure
"""
|See
a<> href='#data' Data
|to find the data used in this report.
"""
Scenario: Use title as cross reference text to refer to a formal admonition block
Given the AsciiDoc source
"""
:xrefstyle: full
Recall in <<essential-tip-1>>, we told you how to speed up this process.
.Essential tip #1
[#essential-tip-1]
TIP: You can speed up this process by pressing the turbo button.
"""
When it is converted to html
Then the result should contain the HTML structure
"""
|Recall in
a< href='#essential-tip-1' Essential tip #1
|, we told you how to speed up this process.
"""
Scenario: Create a cross reference from an AsciiDoc cell to a section
Given the AsciiDoc source
"""
|===
a|See <<_install>>
|===
== Install
Instructions go here.
"""
When it is converted to html
Then the result should match the HTML structure
"""
table.tableblock.frame-all.grid-all.stretch
colgroup
col style='width: 100%;'
tbody
tr
td.tableblock.halign-left.valign-top
div.content
.paragraph: p
|See
a< href='#_install' Install
.sect1
h2#_install Install
.sectionbody
.paragraph: p Instructions go here.
"""
Scenario: Create a cross reference using the title of the target section
Given the AsciiDoc source
"""
== Section One
content
== Section Two, continued from <<Section One>>
refer to <<Section One>>
"""
When it is converted to html
Then the result should match the HTML structure
"""
.sect1
h2#_section_one Section One
.sectionbody: .paragraph: p content
.sect1
h2#_section_two_continued_from_section_one
|Section Two, continued from
a< href='#_section_one' Section One
.sectionbody: .paragraph: p
|refer to
a< href='#_section_one' Section One
"""
Scenario: Create a cross reference using the reftext of the target section
Given the AsciiDoc source
"""
[reftext="the first section"]
== Section One
content
== Section Two
refer to <<the first section>>
"""
When it is converted to html
Then the result should match the HTML structure
"""
.sect1
h2#_section_one Section One
.sectionbody: .paragraph: p content
.sect1
h2#_section_two Section Two
.sectionbody: .paragraph: p
|refer to
a< href='#_section_one' the first section
"""
When it is converted to docbook
Then the result should match the XML structure
"""
section xml:id='_section_one' xreflabel='the first section'
title Section One
simpara content
section xml:id='_section_two'
title Section Two
simpara
|refer to
xref< linkend='_section_one'/
"""
Scenario: Create a cross reference using the formatted title of the target section
Given the AsciiDoc source
"""
== Section *One*
content
== Section Two
refer to <<Section *One*>>
"""
When it is converted to html
Then the result should match the HTML structure
"""
.sect1
h2#_section_one
|Section <strong>One</strong>
.sectionbody: .paragraph: p content
.sect1
h2#_section_two Section Two
.sectionbody: .paragraph: p
|refer to
a< href='#_section_one' Section <strong>One</strong>
"""
Scenario: Does not process a natural cross reference in compat mode
Given the AsciiDoc source
"""
:compat-mode:
== Section One
content
== Section Two
refer to <<Section One>>
"""
When it is converted to html
Then the result should match the HTML structure
"""
.sect1
h2#_section_one
|Section One
.sectionbody: .paragraph: p content
.sect1
h2#_section_two Section Two
.sectionbody: .paragraph: p
|refer to
a< href='#Section One' [Section One]
"""
Scenario: Parses text of xref macro as attributes if attribute signature found
Given the AsciiDoc source
"""
== Section One
content
== Section Two
refer to xref:_section_one[role=next]
"""
When it is converted to html
Then the result should match the HTML structure
"""
.sect1
h2#_section_one
|Section One
.sectionbody: .paragraph: p content
.sect1
h2#_section_two Section Two
.sectionbody: .paragraph: p
|refer to
a< href='#_section_one' class='next' Section One
"""
Scenario: Does not parse text of xref macro as attribute if attribute signature not found
Given the AsciiDoc source
"""
== Section One
content
== Section Two
refer to xref:_section_one[One, Section One]
"""
When it is converted to html
Then the result should match the HTML structure
"""
.sect1
h2#_section_one
|Section One
.sectionbody: .paragraph: p content
.sect1
h2#_section_two Section Two
.sectionbody: .paragraph: p
|refer to
a< href='#_section_one' One, Section One
"""
Scenario: Uses whole text of xref macro as link text if attribute signature found and text is enclosed in double quotes
Given the AsciiDoc source
"""
== Section One
content
== Section Two
refer to xref:_section_one["Section One == Starting Point"]
"""
When it is converted to html
Then the result should match the HTML structure
"""
.sect1
h2#_section_one
|Section One
.sectionbody: .paragraph: p content
.sect1
h2#_section_two Section Two
.sectionbody: .paragraph: p
|refer to
a< href='#_section_one'
|Section One == Starting Point
"""
Scenario: Does not parse text of xref macro as text if enclosed in double quotes but attribute signature not found
Given the AsciiDoc source
"""
== Section One
content
== Section Two
refer to xref:_section_one["The Premier Section"]
"""
When it is converted to html
Then the result should match the HTML structure
"""
.sect1
h2#_section_one
|Section One
.sectionbody: .paragraph: p content
.sect1
h2#_section_two Section Two
.sectionbody: .paragraph: p