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
|
Pandoc
Meta
{ unMeta =
fromList
[ ( "author"
, MetaList [ MetaInlines [ Str "Dave Winer" ] ]
)
, ( "date"
, MetaInlines [ Str "Thu, 14 Jul 2005 23:41:05 GMT" ]
)
, ( "title" , MetaInlines [ Str "States" ] )
]
}
[ Header 1 ( "" , [] , [] ) [ Str "United States" ]
, Header 2 ( "" , [] , [] ) [ Str "Far West" ]
, Header 3 ( "" , [] , [] ) [ Str "Alaska" ]
, Header 3 ( "" , [] , [] ) [ Str "California" ]
, Header 3 ( "" , [] , [] ) [ Str "Hawaii" ]
, Header 3 ( "" , [] , [] ) [ Strong [ Str "Nevada" ] ]
, Para
[ Str "I lived here " , Emph [ Str "once" ] , Str "." ]
, Para [ Str "Loved it." ]
, Header
4
( "" , [] , [] )
[ Link
( "" , [] , [] )
[ Str "Reno" ]
( "http://www.reno.gov" , "" )
]
, Header 4 ( "" , [] , [] ) [ Str "Las Vegas" ]
, Header 4 ( "" , [] , [] ) [ Str "Ely" ]
, Header 4 ( "" , [] , [] ) [ Str "Gerlach" ]
, Header 3 ( "" , [] , [] ) [ Str "Oregon" ]
, Header 3 ( "" , [] , [] ) [ Str "Washington" ]
, Header 2 ( "" , [] , [] ) [ Str "Great Plains" ]
, Header 3 ( "" , [] , [] ) [ Str "Kansas" ]
, Header 3 ( "" , [] , [] ) [ Str "Nebraska" ]
, Header 3 ( "" , [] , [] ) [ Str "North Dakota" ]
, Header 3 ( "" , [] , [] ) [ Str "Oklahoma" ]
, Header 3 ( "" , [] , [] ) [ Str "South Dakota" ]
, Header 2 ( "" , [] , [] ) [ Str "Mid-Atlantic" ]
, Header 3 ( "" , [] , [] ) [ Str "Delaware" ]
, Header 3 ( "" , [] , [] ) [ Str "Maryland" ]
, Header 3 ( "" , [] , [] ) [ Str "New Jersey" ]
, Header 3 ( "" , [] , [] ) [ Str "New York" ]
, Header 3 ( "" , [] , [] ) [ Str "Pennsylvania" ]
, Header 2 ( "" , [] , [] ) [ Str "Midwest" ]
, Header 3 ( "" , [] , [] ) [ Str "Illinois" ]
, Header 3 ( "" , [] , [] ) [ Str "Indiana" ]
, Header 3 ( "" , [] , [] ) [ Str "Iowa" ]
, Header 3 ( "" , [] , [] ) [ Str "Kentucky" ]
, Header 3 ( "" , [] , [] ) [ Str "Michigan" ]
, Header 3 ( "" , [] , [] ) [ Str "Minnesota" ]
, Header 3 ( "" , [] , [] ) [ Str "Missouri" ]
, Header 3 ( "" , [] , [] ) [ Str "Ohio" ]
, Header 3 ( "" , [] , [] ) [ Str "West Virginia" ]
, Header 3 ( "" , [] , [] ) [ Str "Wisconsin" ]
, Header 2 ( "" , [] , [] ) [ Str "Mountains" ]
, Header 3 ( "" , [] , [] ) [ Str "Colorado" ]
, Header 3 ( "" , [] , [] ) [ Str "Idaho" ]
, Header 3 ( "" , [] , [] ) [ Str "Montana" ]
, Header 3 ( "" , [] , [] ) [ Str "Utah" ]
, Header 3 ( "" , [] , [] ) [ Str "Wyoming" ]
, Header 2 ( "" , [] , [] ) [ Str "New England" ]
, Header 3 ( "" , [] , [] ) [ Str "Connecticut" ]
, Header 3 ( "" , [] , [] ) [ Str "Maine" ]
, Header 3 ( "" , [] , [] ) [ Str "Massachusetts" ]
, Header 3 ( "" , [] , [] ) [ Str "New Hampshire" ]
, Header 3 ( "" , [] , [] ) [ Str "Rhode Island" ]
, Header 3 ( "" , [] , [] ) [ Str "Vermont" ]
, Header 2 ( "" , [] , [] ) [ Str "South" ]
, Header 3 ( "" , [] , [] ) [ Str "Alabama" ]
, Header 3 ( "" , [] , [] ) [ Str "Arkansas" ]
, Header 3 ( "" , [] , [] ) [ Str "Florida" ]
, Header 3 ( "" , [] , [] ) [ Str "Georgia" ]
, Header 3 ( "" , [] , [] ) [ Str "Louisiana" ]
, Header 3 ( "" , [] , [] ) [ Str "Mississippi" ]
, Header 3 ( "" , [] , [] ) [ Str "North Carolina" ]
, Header 3 ( "" , [] , [] ) [ Str "South Carolina" ]
, Header 3 ( "" , [] , [] ) [ Str "Tennessee" ]
, Header 3 ( "" , [] , [] ) [ Str "Virginia" ]
, Header 2 ( "" , [] , [] ) [ Str "Southwest" ]
, Header 3 ( "" , [] , [] ) [ Str "Arizona" ]
, Header 3 ( "" , [] , [] ) [ Str "New Mexico" ]
, Header 3 ( "" , [] , [] ) [ Str "Texas" ]
]
|