0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

qiita 投稿用MarkDown記法メモ

Last updated at Posted at 2023-04-08

記事タイトル

記事の概要をここに書きます。

セクション1

文章を書くことができます。

サブセクション1-1

箇条書きも書くことができます。

  • 箇条書き1
  • 箇条書き2

サブセクション1-2

番号付きの箇条書きも書くことができます。

  1. 番号付き箇条書き1
  2. 番号付き箇条書き2

セクション2

画像の挿入もできます。

画像の説明

セクション3

コードの挿入もできます。

python
def say_hello(name):
    print(f"Hello, {name}!")
    
say_hello("John")

↓↓↓以下MarkDown変換前(丸ごと貼り付ければ↑と同じものができます)↓↓↓

# 記事タイトル

記事の概要をここに書きます。

## セクション1

文章を書くことができます。

### サブセクション1-1

箇条書きも書くことができます。

- 箇条書き1
- 箇条書き2

### サブセクション1-2

番号付きの箇条書きも書くことができます。

\1. 番号付き箇条書き1
\2. 番号付き箇条書き2

## セクション2

画像の挿入もできます。

![画像の説明](https://placehold.jp/150x150.png)

## セクション3

コードの挿入もできます。

```言語名:python
def say_hello(name):
print(f"Hello, {name}!")

say_hello("John")
```

0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?