File: bits-index-elements.md

package info (click to toggle)
haskell-pandoc 3.1.11.1-3
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 23,052 kB
  • sloc: haskell: 81,285; xml: 3,855; makefile: 13
file content (83 lines) | stat: -rw-r--r-- 1,634 bytes parent folder | download
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
```
% pandoc -f jats -t native
<index-group>
	<index-title-group>
		<title>Index group</title>
	</index-title-group>
	<p>Content of index group</p>
	<index>
		<index-title-group>
			<title>Index</title>
		</index-title-group>
		<p>Content of index</p>
  		<index-div>
   			<index-title-group>
    			<title>N</title>
   			</index-title-group>
   			<p>Content of index div</p>
   			<index-entry>
    			<term>Navy</term>
    			<x>.</x>
    			<see-entry>Armed forces</see-entry>
    			<x>.</x>
   			</index-entry>
   			<index-entry>
    			<term>Necessary and proper clause, congressional power</term>
   			</index-entry>
   			<index-entry>
    			<term>Newsgathering as commerce</term>
   			</index-entry>
  		</index-div>
	</index>
</index-group>
^D
[ Header
    1 ( "" , [] , [] ) [ Str "Index" , Space , Str "group" ]
, Para
    [ Str "Content"
    , Space
    , Str "of"
    , Space
    , Str "index"
    , Space
    , Str "group"
    ]
, Header 2 ( "" , [] , [] ) [ Str "Index" ]
, Para
    [ Str "Content" , Space , Str "of" , Space , Str "index" ]
, Header 3 ( "" , [] , [] ) [ Str "N" ]
, Para
    [ Str "Content"
    , Space
    , Str "of"
    , Space
    , Str "index"
    , Space
    , Str "div"
    ]
, Plain [ Str "Navy" ]
, Plain [ Str "." ]
, Plain [ Str "Armed" , Space , Str "forces" ]
, Plain [ Str "." ]
, Plain
    [ Str "Necessary"
    , Space
    , Str "and"
    , Space
    , Str "proper"
    , Space
    , Str "clause,"
    , Space
    , Str "congressional"
    , Space
    , Str "power"
    ]
, Plain
    [ Str "Newsgathering"
    , Space
    , Str "as"
    , Space
    , Str "commerce"
    ]
]
```