-
Notifications
You must be signed in to change notification settings - Fork 2
/
05_angular.html
666 lines (604 loc) · 24.1 KB
/
05_angular.html
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
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
<!doctype html>
<html lang="pl">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<title>Projektowanie i implementacja systemów webowych - wykład 5</title>
<meta name="description" content="Angular">
<meta name="author" content="Maciej Małecki">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<title>reveal.js</title>
<link rel="stylesheet" href="dist/reset.css">
<link rel="stylesheet" href="dist/reveal.css">
<link rel="stylesheet" href="dist/theme/white.css" id="theme">
<link rel="stylesheet" href="css/custom.css">
<!-- Theme used for syntax highlighted code -->
<link rel="stylesheet" href="plugin/highlight/monokai.css" id="highlight-theme">
</head>
<body>
<div class="reveal">
<div class="slides">
<section>
<h2>Projekt i implementacja systemów webowych</h2>
<p>Wykład 5: Tworzenie aplikacji SPA w Angularze</p>
<p>mgr inż. Maciej Małecki</p>
</section>
<section>
<h3>Architektura aplikacji SPA</h3>
<img src="img/angular/rich-front-architecture.drawio.svg" alt="Rich Front Architecture" class="backlight">
</section>
<section>
<h3>Popularne frameworki</h3>
<div class="r-hstack">
<img src="img/React-icon.svg" alt="react">
<img src="img/Angular_logo.svg" alt="ng">
<img src="img/Vue.js_Logo.svg" alt="vue">
</div>
</section>
<section>
<h3>Angular: historia</h3>
<div class="r-hstack">
<img src="img/Angular_logo.svg" alt="ng" style="width: 400px;">
<div>
<ul>
<li>AngularJS - Google, 2010</li>
<li>AngularJS: LTS ⇝ 2021-12-31</li>
<li class="fragment" data-fragment-index="1">Angular 2.0 - Google, 2016</li>
<li class="fragment" data-fragment-index="1">Brak kompatybilności między Angular i AngularJS</li>
<li class="fragment" data-fragment-index="2"><span class="bcol4">UWAGA:</span> zwracajcie uwagę na nazwy przeszukując zasoby sieciowe</li>
</ul>
</div>
</div>
</section>
<section>
<h3>Angular: architektura</h3>
<img src="img/angular/angular-architecture.excalidraw.png" alt="Angular Architecture">
</section>
<section>
<h3>Angular: środowisko developerskie</h3>
<ul>
<li><code>Node</code> - środowisko uruchomieniowe dla JavaScript</li>
<li><code>NPM</code> - ang. <em>Node Package Manager</em> - zarządzanie zależnościami</li>
<li><code>NPM registry</code> - repozytorium bibliotek</li>
<li class="fragment"><code>TypeScript</code> - podstawowy język programowania dla Angular 2.x+</li>
<li class="fragment"><code>Angular CLI</code> - narzędzie linii poleceń wspierające proces tworzenia i budowania</li>
<li class="fragment"><code>Karma, Jasmine, JEST, Protractor, Cypress</code> - środowisko tworzenia testów</li>
</ul>
</section>
<section>
<h3>Środowisko developerskie w praktyce</h3>
<section>
<p>Instalacja node ⇝ <code>nvm</code></p>
<p class="fragment" data-fragment-index="1">Instalacja <code>Angular CLI</code></p>
<pre class="bash fragment" data-fragment-index="1"><code class="hljs" data-trim>
npm install -g @angular/cli
</code></pre>
</section>
<section>
<img src="img/angular/angular-cli.excalidraw.png" alt="Angular CLI">
</section>
<section>
<p>Wygenerowanie aplikacji Angular</p>
<pre class="text"><code class="hljs" data-trim>
$ ng new
? What name would you like to use for the new workspace and initial project? foo
? Do you want to enforce stricter type checking and stricter bundle budgets in the workspace?
This setting helps improve maintainability and catch bugs ahead of time.
For more information, see https://angular.io/strict Yes
? Would you like to add Angular routing? Yes
? Which stylesheet format would you like to use? SCSS [ https://sass-lang.com/documentation/syntax#scss ]
</code></pre>
</section>
<section>
<p>Zbudowanie aplikacji</p>
<pre class="text"><code class="hljs" data-trim>
ng build --prod
</code></pre>
<p>Uruchomienie aplikacji</p>
<pre class="text"><code class="hljs" data-trim>
ng serve -o
</code></pre>
</section>
</section>
<section>
<h3>Angular: podstawowe elementy</h3>
<div class="r-vstack">
<div class="r-hstack tile">
<div class="bcol0">Moduły</div>
<div class="bcol1">Komponenty</div>
<div class="bcol2">Dyrektywy</div>
</div>
<div class="r-hstack tile">
<div class="bcol3">Serwisy</div>
<div class="bcol4">Router</div>
<div class="bcol5">Formularze</div>
</div>
</div>
</section>
<section>
<h3>Moduł (<code>NgModule</code>)</h3>
<section>
<ul>
<li>funkcjonalny blok aplikacji,</li>
<li>sposób organizacji kodu,</li>
<li>sposób zarządzania zależnościami,</li>
<li>tworzenie kodu bibliotecznego,</li>
<li><em>lazy-loading</em> w przypadku dużych aplikacji.</li>
</ul>
<p class="fragment bcol0">Moduł ECMA Script oraz Moduł Angulara to dwie różne rzeczy!</p>
</section>
<section>
<div class="r-hstack">
<pre class="typescript"><code class="hljs" data-trim data-line-numbers="|2|3-7|8|10-11">
@NgModule({
imports: [CommonModule],
declarations: [
MyComponent1,
MyComponent2,
MyExternalComponent3
],
exports: [MyExternalComponent3]
})
export class MyModule {
}
</code></pre>
<div style="width: 1em;"></div>
<div>
<ul>
<li><code>@NgModule</code> - dekorator TypeScript</li>
<li>komponenty "należą" do modułu</li>
<li>publiczne elementy modułu należy wyeksportować</li>
</ul>
</div>
</div>
</section>
<section>
<div class="r-hstack">
<img src="img/angular-project-structure-ide.png" alt="Angular Project Structure in IDE" class="backlight white bigtile">
<img src="img/angular-app-composition.svg" alt="Angular Application Composition" class="backlight bigtile">
</div>
<div>
<ul>
<li>Struktura katalogów może odzwierciedlać strukturę modułów.</li>
<li>Przydaje się moduł <em>general</em> lub <em>shared</em>.</li>
</ul>
</div>
</section>
<section>
<h3>Komponenty "standalone"</h3>
<ul>
<li>Moduły są opcjonalne począwszy od Angulara 14.</li>
<li>Komponenty, dyrektywy oraz "pipes" można zadeklarować jako <code>standalone</code>.</li>
<li>Komponenty mogą od teraz importować moduły.</li>
<li>Komponenty (dyrektywy, "pipes") są self-contained.</li>
</ul>
</section>
</section>
<section>
<h3>Komponent</h3>
<section>
<ul>
<li>Komponent jest podstawową jednostką budowania warstwy wizualnej aplikacji.</li>
<li>Komponent może być wykorzystywany wielokrotnie.</li>
<li>Komponent komunikuje się ze światem "zewnętrznym" w ściśle określony sposób.</li>
</ul>
</section>
<section>
<pre class="text"><code class="hljs" data-trim>
ng generate component user-mgmt/user-list
</code></pre>
<div class="r-hstack">
<img src="img/new-user-list-component.png" alt="User list component" class="backlight white midtile">
<img src="img/new-user-list-component-declared.png" alt="User list component declaration"
class="backlight white midtile">
</div>
<ul>
<li><code class="bcol0">html</code> - szablon - część wizualna, ang. <em>template</em> (opcja)</li>
<li><code class="bcol1">scss</code> - prywatny arkusz styli (opcja)</li>
<li><code class="bcol2">component.ts</code> - kod/kontroler komponentu</li>
<li><code class="bcol3">spec.ts</code> - testy jednostkowe komponentu (opcja)</li>
</ul>
</section>
<section>
<p>Definicja wyglądu komponentu w HTML:</p>
<pre class="typescript"><code class="hljs" data-trim><script type="text/template">
@Component({
selector: 'app-user-list',
template: `<p>Some fancy component...</p>`,
styleUrls: ['./user-list.component.scss']
})
export class UserListComponent implements OnInit {
</script>
</code></pre>
<p class="fragment" data-fragment-index="1">lub z użyciem zewnętrznego pliku:</p>
<pre class="typescript fragment" data-fragment-index="1"><code class="hljs" data-trim><script type="text/template">
@Component({
selector: 'app-user-list',
templateUrl: './user-list.component.html',
styleUrls: ['./user-list.component.scss']
})
export class UserListComponent implements OnInit {
</script></code></pre>
</section>
<section>
<p><code>user-list.component.html</code></p>
<pre class="html"><code class="hljs" data-trim data-line-numbers="|10|11-12"><script type="text/template">
<section class='container-fluid'>
<table class='table table-striped'>
<thead>
<tr>
<th>Name</th>
<th>Email</th>
</tr>
</thead>
<tbody>
<tr *ngFor='let user of users'>
<td>{{user.name}}</td>
<td>{{user.email}}</td>
</tr>
</tbody>
</table>
</section>
</script></code></pre>
</section>
</section>
<section>
<h3>Model DOM</h3>
<section>
<p class=" rounded bcol3">DOM (<em>Document Object Model</em>) jest to model obiektowy reprezentujący dokument HTML
wyświetlany przez przeglądarkę.</p>
<div class="r-hstack">
<p class="fragment bcol0 rounded">Przeglądarka buduje DOM w pamięci za każdym razem, gdy wyświetla HTML.</p>
<p class="fragment bcol1 rounded">Każdy skrypt JavaScript (a więc także i każda aplikacja Angular) wchodzi w
interakcję z DOM.</p>
</div>
</section>
<section>
<p class="bcol2">Postawowe API elementów DOM:</p>
<table>
<tr>
<td><strong>atrybut</strong></td>
<td>dodatkowa wartość definiująca tag (w dokumencie
HTML)</td>
</tr>
<tr>
<td><strong>właściwość</strong></td>
<td>(<em>property</em>), właściwość obiektu DOM
(zwykła właściwość obiektu w JS)</td>
</tr>
<tr>
<td><strong>metoda</strong></td>
<td>funkcja obiektu DOM, którą można wywołać</td>
</tr>
<tr>
<td><strong>zdarzenie</strong></td>
<td>(<em>event</em>) - informacja o zaistnieniu
pewnego faktu, np <em>click</em>, <em>focus</em>, <em>blur</em></td>
</tr>
</table>
</section>
</section>
<section>
<h3>Data binding - wiązanie danych</h3>
<section>
<p><em>Data binding</em> są to mechanizmy pozwalające na integrację modelu z widokiem.</p>
</section>
<section>
<table>
<tr>
<td><code>{{interpolation}}</code></td>
<td>wyliczy wyrażenie wewnątrz <code>{{}}</code> oraz wstawi wartość</td>
</tr>
<tr>
<td><code>[property_binding]</code></td>
<td>Angular będzie aktualizował wartość właściwości na podstawie wyrażenia</td>
</tr>
<tr>
<td><code>(event_binding)</code></td>
<td>wywołana zostanie funkcja w reakcji na zaistnienie zdarzenia</td>
</tr>
<tr>
<td><code>[(two_way_binding)]</code></td>
<td>synchronizuje model z widokiem "w obie strony"</td>
</tr>
</table>
</section>
</section>
<section>
<section>
<p>Detekcja zmian</p>
<img src="img/angular/ng-change-detection.excalidraw.png" alt="Change detection">
</section>
<section>
<p>Cykl życia komponentu</p>
<img src="img/angular/ng-lifecycle-hooks.excalidraw.png" alt="Cykl życia komponentu">
</section>
</section>
<section>
<section>
<h3>Dyrektywy</h3>
<p><em>Dyrektywy</em> to elementy rozszerzające funkcjonalność HTML, które można deklarować za pomocą Angular.</p>
<div class="rounded bcol0 fragment">
<p>Istnieją trzy rodzaje dyrektyw:</p>
<ul>
<li>Komponenty (już je znamy)</li>
<li>Dyrektywy atrybutowe</li>
<li>Dyrektywy strukturalne</li>
</ul>
</div>
</section>
<section>
<h3>Dyrektywy atrybutowe</h3>
<div>
<ul>
<li><code>ngModel</code> - wiążą pola edycyjne z modelem</li>
<li><code>ngClass</code> - pozwalają dynamicznie modyfikować klasy CSS</li>
<li><code>ngStyle</code> - pozwalają dynamicznie modyfikować style CSS</li>
</ul>
</div>
</section>
<section>
<h3>Dyrektywy atrybutowe</h3>
<pre class="typescript"><code class="hljs" data-trim>
divClasses = {};
...
this.divClasses: {
'valid': this.isValid(),
'highlighted': this.isHighlighted()
}
</code></pre>
<pre class="html"><code class="hljs" data-trim><script type="text/template">
<div [ngClass]='divClasses'>...</div>
</script></code></pre>
<p>W prostszych przypadkach...</p>
<pre class="html"><code class="hljs" data-trim><script type="text/template">
<div [class.valid]='isValid()'>...</div>
</script></code></pre>
</section>
<section>
<h3>Dyrektywy strukturalne</h3>
<div>
<p class="align-left"><code>*ngIf</code> - dodaje/usuwa element z
DOM: </p>
<pre class="html"><code class="hljs" data-trim><script type="text/template">
<div *ngIf='isVisible'>...</div>
</script></code></pre>
<p class="fragment align-left" data-fragment-index="2"><code>*ngfor</code> - iteruje po liście i
dodaje element DOM dla każdego elementu listy:</p>
<pre class="fragment html" data-fragment-index="2"><code class="hljs" data-trim><script type="text/template">
<div *ngFor='let user of users'>{{user.name}} ({{user.email}})</div>
</script></code></pre>
<p class="fragment align-left" data-fragment-index="3"><code>ngSwitch, *ngSwitchCase,
*ngSwitchDefault</code> - odpowiednik instrukcji switch/case/default z innych języków
programowania.</p>
</div>
</section>
</section>
<section>
<h3>Komunikacja międzykomponentowa</h3>
<section>
<p>Angular pozwala na stosowanie <em>data bindings</em> we własnych komponentach.</p>
<p class="fragment" data-fragment-index="1">Dla danych wejściowych:</p>
<pre class="fragment html" data-fragment-index="1"><code class="hljs" data-trim><script type="text/template">
<app-user-details [user]='user'></app-user-details>
</script></code></pre>
<pre class="fragment typescript" data-fragment-index="1"><code class="hljs" data-trim>
export class UserDetailsComponent
{
...
@Input() user: User;
...
}
</code></pre>
</section>
<section>
<p>Dla danych wyjściowych:</p>
<pre class="html"><code class="hljs" data-trim><script type="text/template">
<app-user-details (onChanged)='onChanged($event)'></app-user-details>
</script></code></pre>
<pre class="typescript"><code class="hljs" data-trim>
export class UserDetailsComponent
{
...
@Output() onChanged = new EventEmitter<User>();
...
this.onChanged.emit(user);
...
}
</code></pre>
</section>
<section>
<h3>Required inputs</h3>
<ul>
<li>Nowość począwszy od Angulara 16</li>
<li><code>@Input({required=true})</code></li>
<li>Wiązanie musi być określone, inaczej nastąpi błąd kompilacji.</li>
</ul>
</section>
<section>
<h3>Input tranforms</h3>
<ul>
<li>Nowość począwszy od Angulara 16</li>
<li><code>@Input({transform: booleanAttribute})</code></li>
<li>Funkcja transformująca wartość.</li>
</ul>
</section>
</section>
<section>
<h3>Routing</h3>
<section>
<p class="rounded bcol1">Jak działa przeglądarka?</p>
<ul>
<li>Obsługa pola adresowego URL</li>
<li>Hiperlinki i przekierowania</li>
<li>Historia przeglądania</li>
</ul>
<p class="fragment rounded bcol0">Router jest modułem Angulara, który implementuje podstawowe
funkcje przeglądarki (URL, historia) w aplikacjach typu Single-Page.</p>
</section>
<section>
<div class="r-hstack">
<img src="img/routing-setup-in-app.png" alt="Routing setup" class="backlight white">
<div style="width: 1em;"></div>
<div>
<ul>
<li>Router to opcjonalny moduł Angulara</li>
<li>Jedna instancja routera dla aplikcji</li>
<li>Router inicjujemy tzw. tablicą przejść (ang. <em>routes</em>)</li>
</ul>
</div>
</div>
</section>
<section>
<div class="r-hstack">
<div class="r-vstack">
<img src="img/routing-reorganized.png" alt="Routing reorganized" class="backlight white">
<img src="img/router-outlet-src.png" alt="Router outlet source" class="backlight white">
</div>
<div style="width: 2em;"></div>
<div>
<p><code>router-outlet</code> określa miejsce, w którym Router będzie
"wklejał" nasz komponent.</p>
<img src="img/router-outlet.png" alt="Router outlet" class="backlight white">
</div>
</div>
</section>
<section>
<p> Więcej informacji na <a href="https://angular.io/guide/router">https://angular.io/guide/router</a>.
</p>
</section>
</section>
<section>
<h3>Serwis</h3>
<section>
<p>Serwis to współdzielony kod aplikacji:</p>
<ul>
<li>może posiadać stan</li>
<li>posiada zasięg (<em>scope</em>) oraz cykl życia</li>
<li>podlega mechanizmowi DI (<em>dependency injection</em>)</li>
</ul>
</section>
<section>
<pre class="typescript"><code class="hljs" data-trim data-line-numbers="|4|6-12|14-16|18-25|27-29|31-35">
@Injectable()
export class UserService {
users: User[] = [];
constructor() {
this.users = [
{id: 1, name: 'John Doe', email: '[email protected]'},
{id: 2, name: 'Max Rockatansky', email: '[email protected]'},
{id: 3, name: 'Chuck Peddle', email: '[email protected]'}
];
}
getAllUsers() {
return this.users;
}
saveUser(user: User) {
const found = this.findUser(user.id);
if (found) {
Object.assign(found, user);
} else {
this.users.push(user);
}
}
findUser(id: number) {
return this.users.find((user: User) => user.id === id);
}
getNextId() {
return this.users
.map((elem: User) => elem.id)
.reduce((prev, curr) => prev > curr ? prev : curr, 0) + 1;
}
}
</code></pre>
</section>
</section>
<section>
<h3>HttpClient</h3>
<pre class="typescript"><code class="hljs" data-trim data-line-numbers="|6|9-11|13-15|17-19|21-23"><script type="text/template">
@Injectable({
providedIn: 'root'
})
export class UserService {
constructor(private readonly http: HttpClient) {
}
getAllUsers(): Observable<Array<User>> {
return this.http.get<Array<User>>('services/rest/users');
}
findUser(id: number): Observable<User> {
return this.http.get<User>(`services/rest/users/${id}`);
}
saveUser(user: User) {
return this.http.post<User>('services/rest/users', user);
}
deleteUser(id: number): Observable<HttpResponse<any>> {
return this.http.delete(services/rest/users/${id}`, { observe: 'body' });
}
}
</script></code></pre>
</section>
<section>
<h3>Architektura Smart-Dumb</h3>
<img src="img/angular/ng-architecture.excalidraw.png" alt="Smart-Dumb">
</section>
<section>
<h3>Bibliografia</h3>
<div class="more-text">
<ul>
<li>
<a href="https://angular.io/docs">https://angular.io/docs</a>, a w szczególności:
<ul>
<li><a href="https://angular.io/guide/router">https://angular.io/guide/router</a></li>
<li>
<a href="https://angular.io/guide/template-syntax">https://angular.io/guide/template-syntax</a>
</li>
<li><a href="https://angular.io/guide/component-interaction">https://angular.io/guide/component-interaction</a>
</li>
<li><a href="https://angular.io/guide/http">https://angular.io/guide/http</a></li>
</ul>
</li>
<li><a href="https://blog.thoughtram.io/">https://blog.thoughtram.io/</a>, a w szczególności:
<ul>
<li>
<a href="https://blog.thoughtram.io/angular/2015/08/11/angular-2-template-syntax-demystified-part-1.html">https://blog.thoughtram.io/angular/2015/08/11/angular-2-template-syntax-demystified-part-1.html</a>
</li>
<li>
<a href="https://blog.thoughtram.io/angular/2016/10/13/two-way-data-binding-in-angular-2.html">https://blog.thoughtram.io/angular/2016/10/13/two-way-data-binding-in-angular-2.html</a>
</li>
</ul>
</li>
</ul>
</div>
</section>
<section>
<h3>Przykładowa aplikacja</h3>
<a href="https://github.com/pwr-piisw/ng-bookstore">https://github.com/pwr-piisw/ng-bookstore</a>
</section>
</div>
<div
id="cgLogo"
style="background: url(img/cg-logo.svg); position: absolute; bottom: 20px; left: 20px; width: 170px; height: 38px;">
</div>
</div>
<script src="dist/reveal.js"></script>
<script src="plugin/notes/notes.js"></script>
<script src="plugin/markdown/markdown.js"></script>
<script src="plugin/highlight/highlight.js"></script>
<!-- <script src="plugin/chalkboard/plugin.js"></script> -->
<script src="plugin/zoom/zoom.js"></script>
<script>
// More info about initialization & config:
// - https://revealjs.com/initialization/
// - https://revealjs.com/config/
Reveal.initialize({
width: 1200,
hash: true,
navigationMode: 'linear',
slideNumber: 'c/t',
// Learn about plugins: https://revealjs.com/plugins/
plugins: [RevealMarkdown, RevealHighlight, RevealNotes, RevealZoom]
});
</script>
</body>
</html>