2013-02-27 21:01:30 +01:00
|
|
|
<!doctype html>
|
|
|
|
<html lang="en">
|
|
|
|
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
|
2020-04-27 10:45:57 +02:00
|
|
|
<title>reveal.js - Markdown Example</title>
|
2013-02-27 21:01:30 +01:00
|
|
|
|
2020-04-27 10:45:57 +02:00
|
|
|
<link rel="stylesheet" href="../dist/reveal.css">
|
|
|
|
<link rel="stylesheet" href="../dist/theme/white.css" id="theme">
|
2013-11-07 14:03:22 +01:00
|
|
|
|
2020-05-19 11:02:59 +02:00
|
|
|
<link rel="stylesheet" href="../plugin/highlight/monokai.css">
|
2013-02-27 21:01:30 +01:00
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
|
|
|
|
<div class="reveal">
|
|
|
|
|
|
|
|
<div class="slides">
|
|
|
|
|
2013-07-25 05:35:18 +02:00
|
|
|
<!-- Use external markdown resource, separate slides by three newlines; vertical slides by two newlines -->
|
2020-04-27 10:45:57 +02:00
|
|
|
<section data-markdown="markdown.md" data-separator="^\n\n\n" data-separator-vertical="^\n\n"></section>
|
2013-02-27 21:01:30 +01:00
|
|
|
|
|
|
|
<!-- Slides are separated by three dashes (quick 'n dirty regular expression) -->
|
|
|
|
<section data-markdown data-separator="---">
|
|
|
|
<script type="text/template">
|
|
|
|
## Demo 1
|
|
|
|
Slide 1
|
|
|
|
---
|
|
|
|
## Demo 1
|
|
|
|
Slide 2
|
|
|
|
---
|
|
|
|
## Demo 1
|
|
|
|
Slide 3
|
|
|
|
</script>
|
|
|
|
</section>
|
|
|
|
|
|
|
|
<!-- Slides are separated by newline + three dashes + newline, vertical slides identical but two dashes -->
|
2014-02-17 21:15:02 +01:00
|
|
|
<section data-markdown data-separator="^\n---\n$" data-separator-vertical="^\n--\n$">
|
2013-02-27 21:01:30 +01:00
|
|
|
<script type="text/template">
|
|
|
|
## Demo 2
|
|
|
|
Slide 1.1
|
|
|
|
|
|
|
|
--
|
|
|
|
|
|
|
|
## Demo 2
|
|
|
|
Slide 1.2
|
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
## Demo 2
|
|
|
|
Slide 2
|
|
|
|
</script>
|
|
|
|
</section>
|
|
|
|
|
|
|
|
<!-- No "extra" slides, since there are no separators defined (so they'll become horizontal rulers) -->
|
|
|
|
<section data-markdown>
|
|
|
|
<script type="text/template">
|
|
|
|
A
|
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
B
|
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
C
|
|
|
|
</script>
|
|
|
|
</section>
|
|
|
|
|
2013-12-02 12:20:48 +01:00
|
|
|
<!-- Slide attributes -->
|
|
|
|
<section data-markdown>
|
|
|
|
<script type="text/template">
|
|
|
|
<!-- .slide: data-background="#000000" -->
|
|
|
|
## Slide attributes
|
|
|
|
</script>
|
|
|
|
</section>
|
|
|
|
|
|
|
|
<!-- Element attributes -->
|
|
|
|
<section data-markdown>
|
|
|
|
<script type="text/template">
|
|
|
|
## Element attributes
|
|
|
|
- Item 1 <!-- .element: class="fragment" data-fragment-index="2" -->
|
|
|
|
- Item 2 <!-- .element: class="fragment" data-fragment-index="1" -->
|
|
|
|
</script>
|
|
|
|
</section>
|
|
|
|
|
2013-11-07 14:03:22 +01:00
|
|
|
<!-- Code -->
|
2013-12-02 12:20:48 +01:00
|
|
|
<section data-markdown>
|
|
|
|
<script type="text/template">
|
2020-04-27 10:45:57 +02:00
|
|
|
```php [1|3-5]
|
2013-12-02 12:20:48 +01:00
|
|
|
public function foo()
|
|
|
|
{
|
|
|
|
$foo = array(
|
|
|
|
'bar' => 'bar'
|
|
|
|
)
|
|
|
|
}
|
|
|
|
```
|
|
|
|
</script>
|
2013-11-07 14:03:22 +01:00
|
|
|
</section>
|
|
|
|
|
2017-11-23 11:12:54 +01:00
|
|
|
<!-- Images -->
|
|
|
|
<section data-markdown>
|
|
|
|
<script type="text/template">
|
|
|
|
![Sample image](https://s3.amazonaws.com/static.slid.es/logo/v2/slides-symbol-512x512.png)
|
|
|
|
</script>
|
|
|
|
</section>
|
|
|
|
|
2013-02-27 21:01:30 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2020-05-11 09:56:54 +02:00
|
|
|
<script src="../dist/reveal.js"></script>
|
2020-05-18 14:41:56 +02:00
|
|
|
<script src="../plugin/markdown/markdown.js"></script>
|
|
|
|
<script src="../plugin/highlight/highlight.js"></script>
|
|
|
|
<script src="../plugin/notes/notes.js"></script>
|
2013-02-27 21:01:30 +01:00
|
|
|
|
|
|
|
<script>
|
|
|
|
|
|
|
|
Reveal.initialize({
|
|
|
|
controls: true,
|
|
|
|
progress: true,
|
|
|
|
history: true,
|
|
|
|
center: true,
|
|
|
|
|
2020-04-27 10:45:57 +02:00
|
|
|
plugins: [ RevealMarkdown, RevealHighlight, RevealNotes ]
|
2013-02-27 21:01:30 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|