reveal.rb 0.4.0 → 0.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (50) hide show
  1. checksums.yaml +5 -5
  2. data/.ruby-version +1 -1
  3. data/.travis.yml +2 -1
  4. data/Dockerfile +4 -0
  5. data/Gemfile +1 -1
  6. data/Gemfile.lock +7 -1
  7. data/README.md +1 -1
  8. data/lib/reveal/command.rb +9 -3
  9. data/lib/reveal/templates/revealjs/css/print/paper.css +4 -3
  10. data/lib/reveal/templates/revealjs/css/print/pdf.css +59 -38
  11. data/lib/reveal/templates/revealjs/css/reveal.css +654 -274
  12. data/lib/reveal/templates/revealjs/css/theme/beige.css +65 -68
  13. data/lib/reveal/templates/revealjs/css/theme/black.css +58 -61
  14. data/lib/reveal/templates/revealjs/css/theme/blood.css +64 -62
  15. data/lib/reveal/templates/revealjs/css/theme/league.css +59 -62
  16. data/lib/reveal/templates/revealjs/css/theme/moon.css +59 -62
  17. data/lib/reveal/templates/revealjs/css/theme/night.css +58 -61
  18. data/lib/reveal/templates/revealjs/css/theme/serif.css +56 -59
  19. data/lib/reveal/templates/revealjs/css/theme/simple.css +60 -60
  20. data/lib/reveal/templates/revealjs/css/theme/sky.css +59 -62
  21. data/lib/reveal/templates/revealjs/css/theme/solarized.css +59 -62
  22. data/lib/reveal/templates/revealjs/css/theme/white.css +59 -62
  23. data/lib/reveal/templates/revealjs/index.html +14 -376
  24. data/lib/reveal/templates/revealjs/js/reveal.js +1073 -342
  25. data/lib/reveal/templates/revealjs/lib/css/zenburn.css +41 -78
  26. data/lib/reveal/templates/revealjs/lib/js/head.min.js +9 -8
  27. data/lib/reveal/templates/revealjs/plugin/highlight/highlight.js +51 -4
  28. data/lib/reveal/templates/revealjs/plugin/markdown/markdown.js +38 -19
  29. data/lib/reveal/templates/revealjs/plugin/markdown/marked.js +1 -1
  30. data/lib/reveal/templates/revealjs/plugin/math/math.js +5 -2
  31. data/lib/reveal/templates/revealjs/plugin/multiplex/client.js +1 -1
  32. data/lib/reveal/templates/revealjs/plugin/multiplex/index.js +24 -16
  33. data/lib/reveal/templates/revealjs/plugin/multiplex/master.js +26 -43
  34. data/lib/reveal/templates/revealjs/plugin/multiplex/package.json +19 -0
  35. data/lib/reveal/templates/revealjs/plugin/notes/notes.html +385 -32
  36. data/lib/reveal/templates/revealjs/plugin/notes/notes.js +39 -6
  37. data/lib/reveal/templates/revealjs/plugin/notes-server/client.js +6 -1
  38. data/lib/reveal/templates/revealjs/plugin/notes-server/index.js +17 -14
  39. data/lib/reveal/templates/revealjs/plugin/notes-server/notes.html +215 -26
  40. data/lib/reveal/templates/revealjs/plugin/print-pdf/print-pdf.js +48 -27
  41. data/lib/reveal/templates/revealjs/plugin/search/search.js +41 -31
  42. data/lib/reveal/templates/revealjs/plugin/zoom-js/zoom.js +17 -23
  43. data/lib/reveal/templates/template.html +12 -41
  44. data/lib/reveal/version.rb +1 -1
  45. data/spec/lib/reveal/command_spec.rb +37 -0
  46. metadata +14 -16
  47. data/lib/reveal/templates/revealjs/lib/font/league-gothic/LICENSE +0 -2
  48. data/lib/reveal/templates/revealjs/lib/font/source-sans-pro/LICENSE +0 -45
  49. data/lib/reveal/templates/revealjs/plugin/leap/leap.js +0 -159
  50. data/lib/reveal/templates/revealjs/plugin/remotes/remotes.js +0 -39
@@ -1,26 +1,26 @@
1
- @import url(../../lib/font/league-gothic/league-gothic.css);
2
- @import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);
3
1
  /**
4
2
  * Beige theme for reveal.js.
5
3
  *
6
4
  * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se
7
5
  */
6
+ @import url(../../lib/font/league-gothic/league-gothic.css);
7
+ @import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);
8
8
  /*********************************************
9
9
  * GLOBAL STYLES
10
10
  *********************************************/
11
11
  body {
12
12
  background: #f7f2d3;
13
- background: -moz-radial-gradient(center, circle cover, #ffffff 0%, #f7f2d3 100%);
14
- background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, #ffffff), color-stop(100%, #f7f2d3));
15
- background: -webkit-radial-gradient(center, circle cover, #ffffff 0%, #f7f2d3 100%);
16
- background: -o-radial-gradient(center, circle cover, #ffffff 0%, #f7f2d3 100%);
17
- background: -ms-radial-gradient(center, circle cover, #ffffff 0%, #f7f2d3 100%);
18
- background: radial-gradient(center, circle cover, #ffffff 0%, #f7f2d3 100%);
13
+ background: -moz-radial-gradient(center, circle cover, white 0%, #f7f2d3 100%);
14
+ background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, white), color-stop(100%, #f7f2d3));
15
+ background: -webkit-radial-gradient(center, circle cover, white 0%, #f7f2d3 100%);
16
+ background: -o-radial-gradient(center, circle cover, white 0%, #f7f2d3 100%);
17
+ background: -ms-radial-gradient(center, circle cover, white 0%, #f7f2d3 100%);
18
+ background: radial-gradient(center, circle cover, white 0%, #f7f2d3 100%);
19
19
  background-color: #f7f3de; }
20
20
 
21
21
  .reveal {
22
- font-family: 'Lato', sans-serif;
23
- font-size: 36px;
22
+ font-family: "Lato", sans-serif;
23
+ font-size: 40px;
24
24
  font-weight: normal;
25
25
  color: #333; }
26
26
 
@@ -29,17 +29,28 @@ body {
29
29
  background: rgba(79, 64, 28, 0.99);
30
30
  text-shadow: none; }
31
31
 
32
- .reveal .slides > section, .reveal .slides > section > section {
32
+ ::-moz-selection {
33
+ color: #fff;
34
+ background: rgba(79, 64, 28, 0.99);
35
+ text-shadow: none; }
36
+
37
+ .reveal .slides > section,
38
+ .reveal .slides > section > section {
33
39
  line-height: 1.3;
34
40
  font-weight: inherit; }
35
41
 
36
42
  /*********************************************
37
43
  * HEADERS
38
44
  *********************************************/
39
- .reveal h1, .reveal h2, .reveal h3, .reveal h4, .reveal h5, .reveal h6 {
45
+ .reveal h1,
46
+ .reveal h2,
47
+ .reveal h3,
48
+ .reveal h4,
49
+ .reveal h5,
50
+ .reveal h6 {
40
51
  margin: 0 0 20px 0;
41
52
  color: #333;
42
- font-family: 'League Gothic', Impact, sans-serif;
53
+ font-family: "League Gothic", Impact, sans-serif;
43
54
  font-weight: normal;
44
55
  line-height: 1.2;
45
56
  letter-spacing: normal;
@@ -70,17 +81,22 @@ body {
70
81
  line-height: 1.3; }
71
82
 
72
83
  /* Ensure certain elements are never larger than the slide itself */
73
- .reveal img, .reveal video, .reveal iframe {
84
+ .reveal img,
85
+ .reveal video,
86
+ .reveal iframe {
74
87
  max-width: 95%;
75
88
  max-height: 95%; }
76
89
 
77
- .reveal strong, .reveal b {
90
+ .reveal strong,
91
+ .reveal b {
78
92
  font-weight: bold; }
79
93
 
80
94
  .reveal em {
81
95
  font-style: italic; }
82
96
 
83
- .reveal ol, .reveal dl, .reveal ul {
97
+ .reveal ol,
98
+ .reveal dl,
99
+ .reveal ul {
84
100
  display: inline-block;
85
101
  text-align: left;
86
102
  margin: 0 0 0 1em; }
@@ -97,7 +113,10 @@ body {
97
113
  .reveal ul ul ul {
98
114
  list-style-type: circle; }
99
115
 
100
- .reveal ul ul, .reveal ul ol, .reveal ol ol, .reveal ol ul {
116
+ .reveal ul ul,
117
+ .reveal ul ol,
118
+ .reveal ol ol,
119
+ .reveal ol ul {
101
120
  display: block;
102
121
  margin-left: 40px; }
103
122
 
@@ -107,9 +126,6 @@ body {
107
126
  .reveal dd {
108
127
  margin-left: 40px; }
109
128
 
110
- .reveal q, .reveal blockquote {
111
- quotes: none; }
112
-
113
129
  .reveal blockquote {
114
130
  display: block;
115
131
  position: relative;
@@ -120,7 +136,8 @@ body {
120
136
  background: rgba(255, 255, 255, 0.05);
121
137
  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); }
122
138
 
123
- .reveal blockquote p:first-child, .reveal blockquote p:last-child {
139
+ .reveal blockquote p:first-child,
140
+ .reveal blockquote p:last-child {
124
141
  display: inline-block; }
125
142
 
126
143
  .reveal q {
@@ -139,16 +156,15 @@ body {
139
156
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3); }
140
157
 
141
158
  .reveal code {
142
- font-family: monospace; }
159
+ font-family: monospace;
160
+ text-transform: none; }
143
161
 
144
162
  .reveal pre code {
145
163
  display: block;
146
164
  padding: 5px;
147
165
  overflow: auto;
148
166
  max-height: 400px;
149
- word-wrap: normal;
150
- background: #3F3F3F;
151
- color: #DCDCDC; }
167
+ word-wrap: normal; }
152
168
 
153
169
  .reveal table {
154
170
  margin: auto;
@@ -158,18 +174,22 @@ body {
158
174
  .reveal table th {
159
175
  font-weight: bold; }
160
176
 
161
- .reveal table th, .reveal table td {
177
+ .reveal table th,
178
+ .reveal table td {
162
179
  text-align: left;
163
180
  padding: 0.2em 0.5em 0.2em 0.5em;
164
181
  border-bottom: 1px solid; }
165
182
 
166
- .reveal table th[align="center"], .reveal table td[align="center"] {
183
+ .reveal table th[align="center"],
184
+ .reveal table td[align="center"] {
167
185
  text-align: center; }
168
186
 
169
- .reveal table th[align="right"], .reveal table td[align="right"] {
187
+ .reveal table th[align="right"],
188
+ .reveal table td[align="right"] {
170
189
  text-align: right; }
171
190
 
172
- .reveal table tr:last-child td {
191
+ .reveal table tbody tr:last-child th,
192
+ .reveal table tbody tr:last-child td {
173
193
  border-bottom: none; }
174
194
 
175
195
  .reveal sup {
@@ -193,18 +213,18 @@ body {
193
213
  .reveal a {
194
214
  color: #8b743d;
195
215
  text-decoration: none;
196
- -webkit-transition: color 0.15s ease;
197
- -moz-transition: color 0.15s ease;
198
- transition: color 0.15s ease; }
216
+ -webkit-transition: color .15s ease;
217
+ -moz-transition: color .15s ease;
218
+ transition: color .15s ease; }
199
219
 
200
220
  .reveal a:hover {
201
- color: #c0a76e;
221
+ color: #c0a86e;
202
222
  text-shadow: none;
203
223
  border: none; }
204
224
 
205
225
  .reveal .roll span:after {
206
226
  color: #fff;
207
- background: #564726; }
227
+ background: #564826; }
208
228
 
209
229
  /*********************************************
210
230
  * IMAGES
@@ -215,10 +235,14 @@ body {
215
235
  border: 4px solid #333;
216
236
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }
217
237
 
238
+ .reveal section img.plain {
239
+ border: 0;
240
+ box-shadow: none; }
241
+
218
242
  .reveal a img {
219
- -webkit-transition: all 0.15s linear;
220
- -moz-transition: all 0.15s linear;
221
- transition: all 0.15s linear; }
243
+ -webkit-transition: all .15s linear;
244
+ -moz-transition: all .15s linear;
245
+ transition: all .15s linear; }
222
246
 
223
247
  .reveal a:hover img {
224
248
  background: rgba(255, 255, 255, 0.2);
@@ -228,44 +252,17 @@ body {
228
252
  /*********************************************
229
253
  * NAVIGATION CONTROLS
230
254
  *********************************************/
231
- .reveal .controls div.navigate-left, .reveal .controls div.navigate-left.enabled {
232
- border-right-color: #8b743d; }
233
-
234
- .reveal .controls div.navigate-right, .reveal .controls div.navigate-right.enabled {
235
- border-left-color: #8b743d; }
236
-
237
- .reveal .controls div.navigate-up, .reveal .controls div.navigate-up.enabled {
238
- border-bottom-color: #8b743d; }
239
-
240
- .reveal .controls div.navigate-down, .reveal .controls div.navigate-down.enabled {
241
- border-top-color: #8b743d; }
242
-
243
- .reveal .controls div.navigate-left.enabled:hover {
244
- border-right-color: #c0a76e; }
245
-
246
- .reveal .controls div.navigate-right.enabled:hover {
247
- border-left-color: #c0a76e; }
248
-
249
- .reveal .controls div.navigate-up.enabled:hover {
250
- border-bottom-color: #c0a76e; }
251
-
252
- .reveal .controls div.navigate-down.enabled:hover {
253
- border-top-color: #c0a76e; }
255
+ .reveal .controls {
256
+ color: #8b743d; }
254
257
 
255
258
  /*********************************************
256
259
  * PROGRESS BAR
257
260
  *********************************************/
258
261
  .reveal .progress {
259
- background: rgba(0, 0, 0, 0.2); }
262
+ background: rgba(0, 0, 0, 0.2);
263
+ color: #8b743d; }
260
264
 
261
265
  .reveal .progress span {
262
- background: #8b743d;
263
266
  -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
264
267
  -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
265
268
  transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }
266
-
267
- /*********************************************
268
- * SLIDE NUMBER
269
- *********************************************/
270
- .reveal .slide-number {
271
- color: #8b743d; }
@@ -1,9 +1,9 @@
1
- @import url(../../lib/font/source-sans-pro/source-sans-pro.css);
2
1
  /**
3
2
  * Black theme for reveal.js. This is the opposite of the 'white' theme.
4
3
  *
5
- * Copyright (C) 2015 Hakim El Hattab, http://hakim.se
4
+ * By Hakim El Hattab, http://hakim.se
6
5
  */
6
+ @import url(../../lib/font/source-sans-pro/source-sans-pro.css);
7
7
  section.has-light-background, section.has-light-background h1, section.has-light-background h2, section.has-light-background h3, section.has-light-background h4, section.has-light-background h5, section.has-light-background h6 {
8
8
  color: #222; }
9
9
 
@@ -15,8 +15,8 @@ body {
15
15
  background-color: #222; }
16
16
 
17
17
  .reveal {
18
- font-family: 'Source Sans Pro', Helvetica, sans-serif;
19
- font-size: 38px;
18
+ font-family: "Source Sans Pro", Helvetica, sans-serif;
19
+ font-size: 42px;
20
20
  font-weight: normal;
21
21
  color: #fff; }
22
22
 
@@ -25,17 +25,28 @@ body {
25
25
  background: #bee4fd;
26
26
  text-shadow: none; }
27
27
 
28
- .reveal .slides > section, .reveal .slides > section > section {
28
+ ::-moz-selection {
29
+ color: #fff;
30
+ background: #bee4fd;
31
+ text-shadow: none; }
32
+
33
+ .reveal .slides > section,
34
+ .reveal .slides > section > section {
29
35
  line-height: 1.3;
30
36
  font-weight: inherit; }
31
37
 
32
38
  /*********************************************
33
39
  * HEADERS
34
40
  *********************************************/
35
- .reveal h1, .reveal h2, .reveal h3, .reveal h4, .reveal h5, .reveal h6 {
41
+ .reveal h1,
42
+ .reveal h2,
43
+ .reveal h3,
44
+ .reveal h4,
45
+ .reveal h5,
46
+ .reveal h6 {
36
47
  margin: 0 0 20px 0;
37
48
  color: #fff;
38
- font-family: 'Source Sans Pro', Helvetica, sans-serif;
49
+ font-family: "Source Sans Pro", Helvetica, sans-serif;
39
50
  font-weight: 600;
40
51
  line-height: 1.2;
41
52
  letter-spacing: normal;
@@ -66,17 +77,22 @@ body {
66
77
  line-height: 1.3; }
67
78
 
68
79
  /* Ensure certain elements are never larger than the slide itself */
69
- .reveal img, .reveal video, .reveal iframe {
80
+ .reveal img,
81
+ .reveal video,
82
+ .reveal iframe {
70
83
  max-width: 95%;
71
84
  max-height: 95%; }
72
85
 
73
- .reveal strong, .reveal b {
86
+ .reveal strong,
87
+ .reveal b {
74
88
  font-weight: bold; }
75
89
 
76
90
  .reveal em {
77
91
  font-style: italic; }
78
92
 
79
- .reveal ol, .reveal dl, .reveal ul {
93
+ .reveal ol,
94
+ .reveal dl,
95
+ .reveal ul {
80
96
  display: inline-block;
81
97
  text-align: left;
82
98
  margin: 0 0 0 1em; }
@@ -93,7 +109,10 @@ body {
93
109
  .reveal ul ul ul {
94
110
  list-style-type: circle; }
95
111
 
96
- .reveal ul ul, .reveal ul ol, .reveal ol ol, .reveal ol ul {
112
+ .reveal ul ul,
113
+ .reveal ul ol,
114
+ .reveal ol ol,
115
+ .reveal ol ul {
97
116
  display: block;
98
117
  margin-left: 40px; }
99
118
 
@@ -103,9 +122,6 @@ body {
103
122
  .reveal dd {
104
123
  margin-left: 40px; }
105
124
 
106
- .reveal q, .reveal blockquote {
107
- quotes: none; }
108
-
109
125
  .reveal blockquote {
110
126
  display: block;
111
127
  position: relative;
@@ -116,7 +132,8 @@ body {
116
132
  background: rgba(255, 255, 255, 0.05);
117
133
  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); }
118
134
 
119
- .reveal blockquote p:first-child, .reveal blockquote p:last-child {
135
+ .reveal blockquote p:first-child,
136
+ .reveal blockquote p:last-child {
120
137
  display: inline-block; }
121
138
 
122
139
  .reveal q {
@@ -135,16 +152,15 @@ body {
135
152
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3); }
136
153
 
137
154
  .reveal code {
138
- font-family: monospace; }
155
+ font-family: monospace;
156
+ text-transform: none; }
139
157
 
140
158
  .reveal pre code {
141
159
  display: block;
142
160
  padding: 5px;
143
161
  overflow: auto;
144
162
  max-height: 400px;
145
- word-wrap: normal;
146
- background: #3F3F3F;
147
- color: #DCDCDC; }
163
+ word-wrap: normal; }
148
164
 
149
165
  .reveal table {
150
166
  margin: auto;
@@ -154,18 +170,22 @@ body {
154
170
  .reveal table th {
155
171
  font-weight: bold; }
156
172
 
157
- .reveal table th, .reveal table td {
173
+ .reveal table th,
174
+ .reveal table td {
158
175
  text-align: left;
159
176
  padding: 0.2em 0.5em 0.2em 0.5em;
160
177
  border-bottom: 1px solid; }
161
178
 
162
- .reveal table th[align="center"], .reveal table td[align="center"] {
179
+ .reveal table th[align="center"],
180
+ .reveal table td[align="center"] {
163
181
  text-align: center; }
164
182
 
165
- .reveal table th[align="right"], .reveal table td[align="right"] {
183
+ .reveal table th[align="right"],
184
+ .reveal table td[align="right"] {
166
185
  text-align: right; }
167
186
 
168
- .reveal table tr:last-child td {
187
+ .reveal table tbody tr:last-child th,
188
+ .reveal table tbody tr:last-child td {
169
189
  border-bottom: none; }
170
190
 
171
191
  .reveal sup {
@@ -189,9 +209,9 @@ body {
189
209
  .reveal a {
190
210
  color: #42affa;
191
211
  text-decoration: none;
192
- -webkit-transition: color 0.15s ease;
193
- -moz-transition: color 0.15s ease;
194
- transition: color 0.15s ease; }
212
+ -webkit-transition: color .15s ease;
213
+ -moz-transition: color .15s ease;
214
+ transition: color .15s ease; }
195
215
 
196
216
  .reveal a:hover {
197
217
  color: #8dcffc;
@@ -200,7 +220,7 @@ body {
200
220
 
201
221
  .reveal .roll span:after {
202
222
  color: #fff;
203
- background: #068ee9; }
223
+ background: #068de9; }
204
224
 
205
225
  /*********************************************
206
226
  * IMAGES
@@ -211,10 +231,14 @@ body {
211
231
  border: 4px solid #fff;
212
232
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }
213
233
 
234
+ .reveal section img.plain {
235
+ border: 0;
236
+ box-shadow: none; }
237
+
214
238
  .reveal a img {
215
- -webkit-transition: all 0.15s linear;
216
- -moz-transition: all 0.15s linear;
217
- transition: all 0.15s linear; }
239
+ -webkit-transition: all .15s linear;
240
+ -moz-transition: all .15s linear;
241
+ transition: all .15s linear; }
218
242
 
219
243
  .reveal a:hover img {
220
244
  background: rgba(255, 255, 255, 0.2);
@@ -224,44 +248,17 @@ body {
224
248
  /*********************************************
225
249
  * NAVIGATION CONTROLS
226
250
  *********************************************/
227
- .reveal .controls div.navigate-left, .reveal .controls div.navigate-left.enabled {
228
- border-right-color: #42affa; }
229
-
230
- .reveal .controls div.navigate-right, .reveal .controls div.navigate-right.enabled {
231
- border-left-color: #42affa; }
232
-
233
- .reveal .controls div.navigate-up, .reveal .controls div.navigate-up.enabled {
234
- border-bottom-color: #42affa; }
235
-
236
- .reveal .controls div.navigate-down, .reveal .controls div.navigate-down.enabled {
237
- border-top-color: #42affa; }
238
-
239
- .reveal .controls div.navigate-left.enabled:hover {
240
- border-right-color: #8dcffc; }
241
-
242
- .reveal .controls div.navigate-right.enabled:hover {
243
- border-left-color: #8dcffc; }
244
-
245
- .reveal .controls div.navigate-up.enabled:hover {
246
- border-bottom-color: #8dcffc; }
247
-
248
- .reveal .controls div.navigate-down.enabled:hover {
249
- border-top-color: #8dcffc; }
251
+ .reveal .controls {
252
+ color: #42affa; }
250
253
 
251
254
  /*********************************************
252
255
  * PROGRESS BAR
253
256
  *********************************************/
254
257
  .reveal .progress {
255
- background: rgba(0, 0, 0, 0.2); }
258
+ background: rgba(0, 0, 0, 0.2);
259
+ color: #42affa; }
256
260
 
257
261
  .reveal .progress span {
258
- background: #42affa;
259
262
  -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
260
263
  -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
261
264
  transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }
262
-
263
- /*********************************************
264
- * SLIDE NUMBER
265
- *********************************************/
266
- .reveal .slide-number {
267
- color: #42affa; }