6
2

Qiitaのスライドモードでサクッと発表用スライドを作ろう

Last updated at Posted at 2023-11-30
1 / 8

スライドモードとは

こんな感じにマークダウンでいい感じのスライドを作ってくれる


おなじみの見出し/本文はどう見えるか

h1

h2

h3

h4

h5

p


# h1
## h2 
### h3
#### h4
##### h5
p


コードブロック

main.py
def stringer():
    print("stringer")

stringer()

```python:main.py
def stringer():
    print("stringer")

stringer()
```


ちなみに改ページをするなら

---

を入れると次のスライドで表示してくれる。


文字装飾もこんな感じに

italic

bold

strikethrough

*italic*

**bold**

~~strikethrough~~

テーブルもいい感じにいける

table content
first 1st
second 2nd
third 3rd
forth 4th

|table| content|
|--|--|
|first | 1st|
|second| 2nd|
|third| 3rd|
|forth| 4th|


社内の勉強会の資料はマークダウンでスライドを使ってみましょう!

6
2
1

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
6
2