aboutsummaryrefslogtreecommitdiff
path: root/test/docbook-xref.native
blob: 16113d50bdcd112f6f238588edb01a1c2568893e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
Pandoc
  ( Meta
    { unMeta = fromList
      [
        ( "title"
        , MetaInlines
          [ Str "An", Space, Str "Example", Space, Str "Book" ]
        )
      ]
    }
  )
  [ Header 1
    ( "ch01", [], [] )
    [ Str "XRef", Space, Str "Samples" ]
  , Para
    [ Str "This"
    , Space
    , Str "paragraph"
    , Space
    , Str "demonstrates"
    , Space
    , Str "several"
    , Space
    , Str "features"
    , Space
    , Str "of"
    , SoftBreak
    , Str "XRef."
    ]
  , BulletList
    [
      [ Para
        [ Str "A"
        , Space
        , Str "straight"
        , Space
        , Str "link"
        , Space
        , Str "generates"
        , Space
        , Str "the"
        , SoftBreak
        , Str "cross-reference"
        , Space
        , Str "text:"
        , Space
        , Link
          ( "", [], [] )
          [ Str "The", Space, Str "Second", Space, Str "Chapter" ]
          ( "#ch02", "" )
        , Str "."
        ]
      ]
    ,
      [ Para
        [ Str "A"
        , Space
        , Str "link"
        , Space
        , Str "to"
        , Space
        , Str "an"
        , Space
        , Str "element"
        , Space
        , Str "with"
        , Space
        , Str "an"
        , SoftBreak
        , Str "XRefLabel:"
        , SoftBreak
        , Link
          ( "", [], [] )
          [ Str "Chapter", Space, Str "the", Space, Str "Third" ]
          ( "#ch03", "" )
        , Str "."
        ]
      ]
    ,
      [ Para
        [ Str "A"
        , Space
        , Str "link"
        , Space
        , Str "with"
        , Space
        , Str "an"
        , SoftBreak
        , Str "EndTerm:"
        , SoftBreak
        , Link
          ( "", [], [] )
          [ Str "Chapter", Space, Str "4" ]
          ( "#ch04", "" )
        , Str "."
        ]
      ]
    ,
      [ Para
        [ Str "A"
        , Space
        , Str "link"
        , Space
        , Str "to"
        , Space
        , Str "an"
        , SoftBreak
        , Str "cmdsynopsis"
        , Space
        , Str "element:"
        , Space
        , Link
          ( "", [], [] )
          [ Str "chgrp" ]
          ( "#cmd01", "" )
        , Str "."
        ]
      ]
    ,
      [ Para
        [ Str "A"
        , Space
        , Str "link"
        , Space
        , Str "to"
        , Space
        , Str "an"
        , SoftBreak
        , Str "funcsynopsis"
        , Space
        , Str "element:"
        , Space
        , Link
          ( "", [], [] )
          [ Str "max" ]
          ( "#func01", "" )
        , Str "."
        ]
      ]
    ]
  , Header 1
    ( "ch02", [], [] )
    [ Str "The", Space, Str "Second", Space, Str "Chapter" ]
  , Para
    [ Str "Some", Space, Str "content", Space, Str "here" ]
  , Header 1
    ( "ch03", [], [] )
    [ Str "The", Space, Str "Third", Space, Str "Chapter" ]
  , Para
    [ Str "Some", Space, Str "content", Space, Str "here" ]
  , Header 1
    ( "ch04", [], [] )
    [ Str "The", Space, Str "Fourth", Space, Str "Chapter" ]
  , Para
    [ Str "Some", Space, Str "content", Space, Str "here" ]
  , Plain
    [ Str "chgrp" ]
  , Plain
    [ Str "-R" ]
  , Plain
    [ Str "-H" ]
  , Plain
    [ Str "-L" ]
  , Plain
    [ Str "-P" ]
  , Plain
    [ Str "-f" ]
  , Plain
    [ Str "group" ]
  , Plain
    [ Str "file" ]
  , Plain
    [ Str "int" ]
  , Plain
    [ Str "max" ]
  , Plain
    [ Str "int" ]
  , Plain
    [ Str "int1" ]
  , Plain
    [ Str "int" ]
  , Plain
    [ Str "int2" ]
  ]