Peter Kurfer
f1118a1ba1
- move to Taskfile - update RevealJS - remove annoying special paths and build overlay file system
60 lines
No EOL
588 B
Markdown
60 lines
No EOL
588 B
Markdown
# Markdown Demo
|
|
|
|
## External 1.1
|
|
|
|
Content 1.1
|
|
|
|
Note: This will only appear in the speaker notes window.
|
|
|
|
---
|
|
|
|
## External 1.2
|
|
|
|
Content 1.2
|
|
|
|
===
|
|
|
|
## External 2
|
|
|
|
Content 2.1
|
|
|
|
===
|
|
|
|
## External 3.1
|
|
|
|
Content 3.1
|
|
|
|
---
|
|
|
|
## External 3.2
|
|
|
|
Content 3.2
|
|
|
|
---
|
|
|
|
## External 3.3
|
|
|
|
![External Image](https://s3.amazonaws.com/static.slid.es/logo/v2/slides-symbol-512x512.png)
|
|
|
|
===
|
|
|
|
## External 4.1
|
|
|
|
![Local image](/examples/gopher.jpg)
|
|
|
|
---
|
|
|
|
## External 4.2
|
|
|
|
<a href="https://www.google.com">Google</a>
|
|
|
|
===
|
|
|
|
## Code
|
|
|
|
```csharp
|
|
var i = 10;
|
|
for (var j = 0; j < i; j++) {
|
|
Console.WriteLine($"{j}");
|
|
}
|
|
``` |