aboutsummaryrefslogtreecommitdiff
path: root/test/corpus/document.txt
blob: 61f7699f182a3bd8534e6cf6e74eba6f14fef6fb (plain) (blame)
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
=========================
Complete Document Example
=========================

html lang="en" {
	head {
		meta charset="UTF-8" {}
		meta
			name="viewport"
			content="width=device-width, initial-scale=1.0"
		{}
		link href="/favicon.svg" rel="shortcut icon" type="image/svg" {}
		link href="/style.svg" rel="stylesheet" {}
		title {-My Website Title}
	}

	body {
		p #my-id  {= This is a paragraph with the id ‘my-id’     }
		p .my-cls {= This is a paragraph with the class ‘my-cls’ }

		/ div {
			p {- This entire div is commented out. }
			p {- Isn’t that neat? }
		}

		p
			#some-id
			.class-1
			.class-2
			key-1="value-1"
			key-2 = "value-2"
		{-
			This paragraph has an ID, two classes, and two additional
			attributes.  GSP allows us to use the ‘#ident’ and ‘.ident’
			syntaxes as shorthands for applying IDs, and classes.  This
			is a text node, so nothing is being interpreted as GSP nodes,
			but we can include them inline if we want.  As an example,
			here is some @em {-emphatic} text.  Your inline nodes can
			also have attributes @em #id {-just like a regular node}.
		}
	}
}

---

(document
  (node
    name: (ident)
    attrs: (attr_list
      (attr
        name: (ident)
        value: (string)))
    body: (node_body
      (node
        name: (ident)
        body: (node_body
          (node
            name: (ident)
            attrs: (attr_list
              (attr
                name: (ident)
                value: (string)))
            body: (node_body))
          (node
            name: (ident)
            attrs: (attr_list
              (attr
                name: (ident)
                value: (string))
              (attr
                name: (ident)
                value: (string)))
            body: (node_body))
          (node
            name: (ident)
            attrs: (attr_list
              (attr
                name: (ident)
                value: (string))
              (attr
                name: (ident)
                value: (string))
              (attr
                name: (ident)
                value: (string)))
            body: (node_body))
          (node
            name: (ident)
            attrs: (attr_list
              (attr
                name: (ident)
                value: (string))
              (attr
                name: (ident)
                value: (string)))
            body: (node_body))
          (node
            name: (ident)
            body: (node_body
              (text)))))
      (node
        name: (ident)
        body: (node_body
          (node
            name: (ident)
            attrs: (attr_list
              (id_attr
                name: (ident)))
            body: (node_body
              (text)))
          (node
            name: (ident)
            attrs: (attr_list
              (class_attr
                name: (ident)))
            body: (node_body
              (text)))
          (comment
            name: (ident)
            body: (node_body
              (node
                name: (ident)
                body: (node_body
                  (text)))
              (node
                name: (ident)
                body: (node_body
                  (text)))))
          (node
            name: (ident)
            attrs: (attr_list
              (id_attr
                name: (ident))
              (class_attr
                name: (ident))
              (class_attr
                name: (ident))
              (attr
                name: (ident)
                value: (string))
              (attr
                name: (ident)
                value: (string)))
            body: (node_body
              (text
                (node
                  name: (ident)
                  body: (node_body
                    (text)))
                (node
                  name: (ident)
                  attrs: (attr_list
                    (id_attr
                      name: (ident)))
                  body: (node_body
                    (text)))))))))))