LoginSignup
22
15

More than 1 year has passed since last update.

Go: Terminal上でmarkdownをプレゼンできるslides

Posted at

GitHub上で流行っていたもののお試し。

gif

インストール

あらかじめ golang が必要。

go install github.com/maaslalani/slides@latest

git clone https://github.com/maaslalani/slides.git
cd slides
go install

使い方

slides sample.md
slides.gif

sample.md
# page1 

自己紹介


---

# page2 

はじめまして


---

 `---` で区切るだけで改ページ。

```markdown
# Slide 1
Some stuff


---

1. 表にもできる

| Tables | Too    |
| ------ | ------ |
| Even   | Tables |

---

改行は LF でないといけないようだ。

---

# That's it.

Thank you!!

*改行は LF でないと改ページしてくれないようだ。

簡単ですが以上です。

22
15
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
22
15