-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmarkdown.html
More file actions
779 lines (546 loc) · 19.2 KB
/
markdown.html
File metadata and controls
779 lines (546 loc) · 19.2 KB
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
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=utf-8">
<title>Using Markdown for Websites, Presentations, or Books</title>
<meta name="generator" content="Slide Show (S9) 1.2.3 on Ruby 1.9.2 (2011-07-09) [i386-mingw32]">
<meta name="author" content="Your Name Here" >
<!-- helper/macro that lets you add (CSS3) gradient using headers
see http://slideshow.rubyforge.org/themes.html
-->
<!-- S6 style sheet links -->
<link rel="stylesheet" href="markdown.css" media="projection" id="styleProjection">
<link rel="stylesheet" href="s6/screen.css" media="screen" id="styleScreen">
<link rel="stylesheet" href="s6/print.css" media="print">
<!-- S6 JS -->
<script src="s6/jquery.js"></script>
<script src="s6/jquery.slideshow.js"></script>
<script>
$(document).ready( function() {
Slideshow.init();
} );
</script>
<!-- Better Browser Banner for Microsoft Internet Explorer (IE) -->
<!--[if IE]>
<script src="s6/jquery.microsoft.js"></script>
<![endif]-->
</head>
<body>
<div class="layout">
<div id="header"></div>
<div id="footer">
<h1>Your Footer Here</h1>
<h2>Your Subfooter Here</h2>
</div>
</div>
<div class="presentation">
<div class='slide '>
<!-- === begin markdown block =====================================================
generated by markdown 1.0.0 on Ruby 1.9.2 (2011-07-09) [i386-mingw32]
on 2013-06-06 16:52:23 +0200 with Markdown engine kramdown (1.0.2)
using options { !to be done! }
-->
<!-- _S9SLIDE_ -->
<h1 id="using-markdown-for-websites-presentations-or-books">Using Markdown for Websites, Presentations, or Books</h1>
<p>Agenda</p>
<ul>
<li>What’s Markdown?</li>
<li>Syntax - Text Formatting</li>
<li>Syntax - Header Formatting</li>
<li>Syntax - Hyperlink</li>
<li>What is Markdown good for?</li>
<li>Example - Website</li>
<li>Example - Presentation</li>
<li>Example - Book</li>
<li>Markdown Parsers in Ruby</li>
<li>What’s the <code>markdown</code> Gem?</li>
<li>Tooling - Websites</li>
<li>Tooling - Presentations</li>
<li>Tooling - Books</li>
</ul>
</div>
<div class='slide '>
<!-- _S9SLIDE_ -->
<h1 id="whats-markdown-whats-markup">What’s Markdown? What’s Markup?</h1>
<p>Markdown is a wiki-style markup language that’s</p>
<ul>
<li>easy-to-write and</li>
<li>easy-to-read</li>
</ul>
<p>and that lets you author web pages in <strong>plain text</strong>.</p>
</div>
<div class='slide '>
<!-- _S9SLIDE_ -->
<h1 id="whats-markdown--example">What’s Markdown? Example</h1>
<pre><code># What's Markdown?
Markdown is a wiki-style markup language that's
* easy-to-write and
* easy-to-read
and that lets you author web pages in __plain text__.
</code></pre>
<p>becomes</p>
<pre><code><h1>What's Markdown?</h1>
<p>
Markdown is a wiki-style markup language that's
</p>
<ul>
<li>easy-to-write and</li>
<li>easy-to-read</li>
</ul>
<p>
and that lets you author web pages in <strong>plain text</strong>.
</p>
</code></pre>
</div>
<div class='slide '>
<!-- _S9SLIDE_ -->
<h1 id="live-demo---markdown-note">Live Demo - Markdown Note</h1>
<p><img src="i/markdown-note.png" alt="" /></p>
<p>Try <a href="http://note.herokuapp.com"><code>note.herokuapp.com</code></a></p>
</div>
<div class='slide '>
<!-- _S9SLIDE_ -->
<h1 id="more-plain-text-wiki-style-markup-languages">More Plain Text Wiki-Style Markup Languages</h1>
<p>Many languages including:</p>
<ul>
<li>Bulletin Board Code (BBCode) - used in PHP forums</li>
<li>MediaWiki Markup - used in Wikipedia</li>
<li>Org-mode - used in Emacs Editor</li>
<li>reStructuredText (reST) - used in Python docs</li>
<li>Textile</li>
<li>AsciiDoc</li>
</ul>
<p>and many more</p>
</div>
<div class='slide '>
<!-- _S9SLIDE_ -->
<h1 id="syntax---text-formatting----bold-italic-monospaced-code">Syntax - Text Formatting - <strong>Bold</strong>, <em>Italic</em>, <code>Monospaced (Code)</code></h1>
<h3 id="markdown">Markdown</h3>
<pre><code>**bold text** or __bold text__
*italic text* or _italic text_
Inline `monospaced` text.
</code></pre>
<h3 id="bulletin-board-code">Bulletin Board Code</h3>
<pre><code>[b]bold text[/b]
[i]italic text[/i]
[code]monospace text[/code]
</code></pre>
<h3 id="wikipedia">Wikipedia</h3>
<pre><code>'''bold text'''
''italic text''
<code>monospace text</code>
</code></pre>
</div>
<div class='slide '>
<!-- _S9SLIDE_ -->
<h1 id="syntax---header-formatting">Syntax - Header Formatting</h1>
<h3 id="markdown-1">Markdown</h3>
<pre><code># Level 1 Header
## Level 2 Header
or
Level 1 Header
==============
Level 2 Header
--------------
</code></pre>
<h3 id="bulletin-board-code-1">Bulletin Board Code</h3>
<p>Does not support headers</p>
<h3 id="wikipedia-1">Wikipedia</h3>
<pre><code>= Level 1 Header =
== Level 2 Header ==
</code></pre>
</div>
<div class='slide '>
<!-- _S9SLIDE_ -->
<h1 id="syntax---hyperlink">Syntax - Hyperlink</h1>
<h3 id="markdown-2">Markdown</h3>
<pre><code><http://www.example.com>
or
[Link text](http://www.example.com "optional title attribute")
or
[Link text][id]
and elsewhere
[id]: http://www.example.com "optional title attribute"
</code></pre>
<h3 id="bulletin-board-code-2">Bulletin Board Code</h3>
<pre><code>[url]http://www.example.com[/url]
[url=http://www.example.com]Link text[/url]
</code></pre>
<h3 id="wikipedia-2">Wikipedia</h3>
<pre><code>[[Internal page]]
[[Internal page|Displayed text]]
[http://www.example.com]
[http://www.example.com External link]
</code></pre>
</div>
<div class='slide '>
<!-- _S9SLIDE_ -->
<h1 id="what-is-markdown-good-for">What is Markdown good for?</h1>
<ul>
<li>Websites</li>
<li>Presentations</li>
<li>Books</li>
</ul>
<h3 id="who-is-using-markdown">Who is using Markdown?</h3>
<ul>
<li>GitHub</li>
<li>Stack Overflow</li>
<li>Reddit</li>
<li>You?</li>
<li>And many more </li>
</ul>
</div>
<div class='slide '>
<!-- _S9SLIDE_ -->
<h1 id="website-example---viennarb">Website Example - <code>vienna.rb</code></h1>
<p><code>2013-04-13-the-slides-of-our-second-meetup-are-online.markdown</code>:</p>
<pre><code>---
layout: post
title: The slides of our second meetup are online
date: 2013-04-13 17:00
author: Floor Drees (@floordrees)
categories: [slides, meetup]
---
## ALL the slides
Hi there, we just pushed the slides of the second meetup to our [repository][1].
Feel free to check them out.
##### Floor Drees, introducing the Coders without Borders project
##### Gerald Bauer on his beer.db and world.db gem
##### Tomáš Kramár on 'open' data in Slovakia
##### Anton Bangratz opened up his big o' bag of tricks
Like what you see? Join us for our next [meetup][2] on May the 9th at Sektor5!
[1]: https://github.com/vienna-rb/slides
[2]: http://www.meetup.com/vienna-rb/events/102695522/
</code></pre>
<p><img src="i/markdown-website.png" alt="" /></p>
<p>Source: <a href="http://vienna-rb.at/blog/2013/04/13/the-slides-of-our-second-meetup-are-online/"><code>vienna-rb.at/blog/2013/04/13/the-slides-of-our-second-meetup-are-online</code></a></p>
</div>
<div class='slide '>
<!-- _S9SLIDE_ -->
<h1 id="website-example---viennarb-cont">Website Example - <code>vienna.rb</code> (Cont.)</h1>
<p>List of posts in Markdown. Yeah!</p>
<pre><code>_posts/
2013-02-14-vienna-dot-rb-brings-rubyists-together.markdown
2013-03-19-second-meetup-to-take-place-at-co-working-space-sektor5.markdown
2013-03-22-rubyslava-number-26-ruby-meet-up-in-bratislava.markdown
2013-03-26-the-slides-of-our-first-meetup-are-online.markdown
2013-03-27-new-about-page.markdown
2013-04-13-the-slides-of-our-second-meetup-are-online.markdown
2013-04-15-picks.markdown
....
</code></pre>
<p><img src="i/markdown-website-github.png" alt="" /></p>
<p>Source: <a href="https://github.com/vienna-rb/vienna-rb.github.com/tree/source/source/_posts"><code>github.com/vienna-rb/vienna-rb.github.com/_posts</code></a></p>
</div>
<div class='slide '>
<!-- _S9SLIDE_ -->
<h1 id="presentation-example---slide-show-s9-10-minute-tutorial">Presentation Example - Slide Show (S9) 10-Minute Tutorial</h1>
<p><code>talks/tutorial.markdown</code>:</p>
<pre><code># Slide Show (S9) 10-Minute Tutorial
Agenda
* What's Slide Show (S9)?
* Wiki-Style Markup Language - Markdown, Textile
* How it works - Just press F11!
* What's S5? What's S6?
* Gradient Themes Using "Loss-Free" Vector Graphics in S9
* Turn Your Online Wiki Pages into Slide Shows
# What's Slide Show (S9)?
A Free Web Alternative to PowerPoint and Keynote in Ruby
### Getting Started in 1-2-3 Easy Steps
* Step 1: Author your slides in plain text using a wiki-style markup language
* Step 2: Generate your slide show using the `slideshow` gem
* Step 3: Open up your slide show in your browser and hit the space bar to flip through your slides
* That's it. Showtime
...
# Thanks - Learn More - Questions? Comments?
Gerald Bauer designed and developed the Slide Show (S9) Ruby gem.
Find out more @ [`slideshow-s9.github.io`](http://slideshow-s9.github.io)
Questions? Comments? Send them along to the
[Free Web Slide Show Alternatives Forum](http://groups.google.com/group/webslideshow).
Thanks!
</code></pre>
<p><img src="i/markdown-presentation.png" alt="" /></p>
</div>
<div class='slide '>
<!-- _S9SLIDE_ -->
<h1 id="book-example---pro-git---distributed-is-the-new-centralized">Book Example - Pro Git - Distributed is the New Centralized</h1>
<p><code>progit/en/01-introduction/01-chapter1.markdown</code>:</p>
<pre><code>## A Short History of Git ##
As with many great things in life, Git began with a bit of creative destruction and fiery controversy.
The Linux kernel is an open source software project of fairly large scope. For most of the lifetime
of the Linux kernel maintenance (1991–2002), changes to the software were passed around as patches and
archived files. In 2002, the Linux kernel project began using a proprietary DVCS system called BitKeeper.
In 2005, the relationship between the community that developed the Linux kernel and the commercial
company that developed BitKeeper broke down, and the tool’s free-of-charge status was revoked.
This prompted the Linux development community (and in particular Linus Torvalds, the creator of Linux)
to develop their own tool based on some of the lessons they learned while using BitKeeper.
Some of the goals of the new system were as follows:
* Speed
* Simple design
* Strong support for non-linear development (thousands of parallel branches)
* Fully distributed
* Able to handle large projects like the Linux kernel efficiently (speed and data size)
Since its birth in 2005, Git has evolved and matured to be easy to use and yet retain these initial qualities.
It's incredibly fast, it's very efficient with large projects, and it has an incredible branching system
for non-linear development (See Chapter 3).
</code></pre>
<p><img src="i/markdown-book.png" alt="" /></p>
</div>
<div class='slide '>
<!-- _S9SLIDE_ -->
<h1 id="book-example---pro-git---distributed-is-the-new-centralized-cont">Book Example - Pro Git - Distributed is the New Centralized (Cont.)</h1>
<pre><code>01-introduction/
01-chapter1.markdown
02-git-basics/
01-chapter2.markdown
03-git-branching/
01-chapter3.markdown
04-git-server/
01-chapter4.markdown
05-distributed-git/
01-chapter5.markdown
06-git-tools/
01-chapter6.markdown
07-customizing-git/
01-chapter7.markdown
08-git-and-other-scms/
01-chapter8.markdown
09-git-internals/
01-chapter9.markdown
</code></pre>
<p><img src="i/markdown-book-github.png" alt="" /></p>
<p>Source: <a href="https://github.com/progit/progit/tree/master/en">github.com/progit/en</a></p>
</div>
<div class='slide '>
<!-- _S9SLIDE_ -->
<h1 id="markdown-parsers-in-ruby">Markdown Parsers in Ruby</h1>
<p>Many options!</p>
<ul>
<li>kramdown (Made in Vienna by Thomas Leitner)</li>
<li>redcarpet</li>
<li>bluecloth</li>
<li>maruku</li>
<li>rpeg-markdown</li>
<li>rdiscount</li>
<li>pandoc-ruby</li>
<li>and more!</li>
</ul>
<p>Usage in Ruby:</p>
<pre><code>require 'markdown'
Markdown.new( 'Servus Wien' ).to_html
# => "<p>Servus Wien</p>\n"
</code></pre>
</div>
<div class='slide '>
<!-- _S9SLIDE_ -->
<h1 id="whats-the-markdown-gem">What’s the <code>markdown</code> Gem?</h1>
<p>The Markdown Engine Wrapper (<code>markdown</code>) gem lets you use your Ruby markdown library of choice. Example:</p>
<pre><code>$ set MARKDOWN_LIB=kramdown
</code></pre>
<p>or</p>
<p><code>~/markdown.yml</code>:</p>
<pre><code>## Let's use the Redcarpet library
lib: redcarpet
redcarpet:
extensions:
- no_intra_emphasis
- fenced_code_blocks
- tables
- strikethrough
</code></pre>
<p>Tip: The <code>markdown</code> gem includes a little command line tool. Try <code>markdown -h</code> for details.
Note - The markdown command line tool includes a server and little online markdown editor!
Try <code>markdown serve</code> to start your own web service / HTTP (JSON) API.</p>
<p>Source: <a href="https://github.com/geraldb/markdown"><code>github.com/geraldb/markdown</code></a></p>
</div>
<div class='slide '>
<!-- _S9SLIDE_ -->
<h1 id="tooling---websites">Tooling - Websites</h1>
<p>Many static site compilers/builders options! Let’s use Jekyll. Example:</p>
<p><code>mypage.markdown</code>:</p>
<pre><code>---
title: My Page
---
## Page Header
Some text here.
## Another Page Header
More text here.
Some code:
10 PRINT "BASIC ROCKS!"
20 GOTO 10
</code></pre>
<p>To build your site (pages) issue:</p>
<pre><code>$ jekyll build
</code></pre>
<p>That’s it. More options:</p>
<ul>
<li>Ace</li>
<li>Bonsai</li>
<li>Frank</li>
<li>nanoc</li>
<li>Middleman</li>
<li>StaticMatic</li>
<li>Statis</li>
<li>ZenWeb</li>
<li>and many more!</li>
</ul>
</div>
<div class='slide '>
<!-- _S9SLIDE_ -->
<h1 id="tooling---presentations">Tooling - Presentations</h1>
<p>Many presentation builders options! Let’s use Slide Show (S9). Example:</p>
<p><code>mytalk.markdown</code>:</p>
<pre><code># My Slide Title
* Bullet Point One
* Bullet Point Two
# Another Slide Title
Some text here.
</code></pre>
<p>To build your presentation issue:</p>
<pre><code>$ slideshow mytalk.markdown
</code></pre>
<p>That’s it. More options:</p>
<ul>
<li>deck.rb</li>
<li>KeyDown</li>
<li>Parade</li>
<li>ShowOff</li>
<li>Slidedown</li>
<li>Slide’em up</li>
<li>and many more!</li>
</ul>
</div>
<div class='slide '>
<!-- _S9SLIDE_ -->
<h1 id="tooling---books">Tooling - Books</h1>
<p>Let’s use Pandoc. Note: It’s Haskell (not Ruby). Example:</p>
<p><code>mybook.txt</code>:</p>
<pre><code>Title: My Book
Author: Ruby Rubacuori
This is my book.
# Chapter One
Chapter one is over.
# Chapter Two
Chapter two has just begun.
</code></pre>
<p>To build your book issue:</p>
<pre><code>$ pandoc mybook.txt -o mybook.epub
</code></pre>
<p>That’s it.</p>
</div>
<div class='slide '>
<!-- _S9SLIDE_ -->
<h1 id="thats-it-thank-you">That’s it. Thank you.</h1>
<p>Questions? Comments?</p>
</div>
<div class='slide '>
<!-- _S9SLIDE_ -->
<h1 id="appendix-whats-epub">Appendix: What’s EPUB?</h1>
<p><img src="i/epub-logo.gif" alt="" /></p>
<p>EPUB (short for Electronic PUBlication) is a free and open e-book standard.
Files are zipped up archives with the extension <code>.epub.</code> Example:</p>
<pre><code>title_page.html
ch01.html
ch02.html
ch03.html
styles.css
</code></pre>
<p>Plus some extras (defined in the Open Container Format - OCF):</p>
<pre><code>mimetype # identification as epub - application/epub+zip
META-INF/container.xml # contents of the book (in XML)
content.opf # .opf - Open Packaging Format (in XML)
toc.ncx # .ncs - Navigation Control file for XML (in XML)
nav.html
</code></pre>
</div>
<div class='slide '>
<!-- _S9SLIDE_ -->
<h1 id="appendix-zen-writing---zen-text-editor">Appendix: Zen Writing - Zen Text Editor</h1>
<p>What’s Zen Writing?</p>
<p>Extremely stripped down text editor - leaving you alone with your thoughts
and your words - lets you focus on your text.</p>
<h3 id="linux">Linux</h3>
<ul>
<li>ReText (Free, Open Source)</li>
<li>UberWriter (Free, Open Source)</li>
</ul>
<h3 id="windows">Windows</h3>
<ul>
<li>WriteMonkey (Free, Open Source)</li>
<li>MarkPad (Free, Open Source)</li>
</ul>
<h3 id="apple--mac--ipad">Apple / Mac / iPad</h3>
<ul>
<li>Byword ($9.99)</li>
<li>Marked ($2.99)</li>
<li>IA Writer ($9.99)</li>
<li>Elements ($4.99)</li>
</ul>
<p>Many more</p>
</div>
<div class='slide '>
<!-- _S9SLIDE_ -->
<h1 id="appendix-whats-markdown-extra">Appendix: What’s Markdown Extra?</h1>
<p>Adds more “extras” to Markdown. Example:</p>
<ul>
<li>Inline HTML</li>
<li>Markdown Inside HTML Blocks</li>
<li>Header Id Attribute</li>
<li>Fenced Code Blocks</li>
<li>Tables</li>
<li>Definition Lists</li>
<li>Footnotes</li>
<li>Abbreviations</li>
<li>Emphasis</li>
<li>Backslash Escapes</li>
</ul>
<p>Table Example:</p>
<pre><code>| Item | Value |
| --------- | -----:|
| Computer | $1600 |
| Phone | $12 |
| Pipe | $1 |
</code></pre>
<p>becomes</p>
<pre><code><table>
<thead>
<tr>
<th>Item</th>
<th style="text-align: right">Value</th>
</tr>
</thead>
<tbody>
<tr>
<td>Computer</td>
<td style="text-align: right">$1600</td>
</tr>
<tr>
<td>Phone</td>
<td style="text-align: right">$12</td>
</tr>
<tr>
<td>Pipe</td>
<td style="text-align: right">$1</td>
</tr>
</tbody>
</table>
</code></pre>
</div>
<div class='slide '>
<!-- _S9SLIDE_ -->
<h1 id="appendix-whats-babelmark2-whats-markdown-dingus">Appendix: What’s Babelmark2? What’s Markdown Dingus?</h1>
<p>Markdown Dingus - very first online Markdown converter; uses original
Markdown Perl script)</p>
<ul>
<li><a href="http://daringfireball.net/projects/markdown/dingus"><code>daringfireball.net/projects/markdown/dingus</code></a></li>
</ul>
<p>Babelmark2 - modern version of Markdown Dingus; lets you compare
many Markdown services via HTTP (JSON) API</p>
<ul>
<li><a href="http://johnmacfarlane.net/babelmark2/"><code>johnmacfarlane.net/babelmark2</code></a></li>
</ul>
<!-- === end markdown block ===================================================== -->
</div>
</div><!-- presentation -->
</body>
</html>