---
theme: https://github.com/maaslalani/slides/raw/main/styles/theme.json
---
# Welcome to Slides
A terminal based presentation tool
---
# Code blocks
Slides allows you to execute code blocks directly inside your slides!
Just press `ctrl+e` and the result of the code block will be displayed as virtual
text in your slides.
---
### Bash
```bash
ls
```
---
### Go
```go
package main
import "fmt"
func main() {
fmt.Println("Hello, world!")
}
```
---
### Javascript
```javascript
console.log("Hello, world!")
```
---
### Python
```python
print("Hello, world!")
```
---
# h1
## h2
### h3
#### h4
##### h5
###### h6
---
# Markdown components
You can use everything in markdown!
* Like bulleted list
* You know the deal
1. Numbered lists too
* [x] ToDo
---
# Tables
| Tables | Too |
| ------ | ------ |
| Even | Tables |
---
# Graphs
```
digraph {
rankdir = LR;
a -> b;
b -> c;
}
```
```
┌───┐ ┌───┐ ┌───┐
│ a │ ──▶ │ b │ ──▶ │ c │
└───┘ └───┘ └───┘
```
---
~~~uname -a
This will be replaced by command `uname -a`
~~~
---
SEE YOU!
[Blog](https://suda-mottis.github.io/blog)
![ME](/home/morris/blog/docs/.vuepress/public/author.jpg)