2
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 3 years have passed since last update.

Markdown の一覧

Last updated at Posted at 2021-06-22

見出し

H1

h2

h3

h4

# H1
## h2
### h3
#### h4

アコーディオン

クリック 内容内容内容内容内容内容内容 内容内容内容内容内容内容内容 内容内容内容内容内容 内容内容内容内容内容
<details open>
<summary>タイトル</summary>
内容内容内容内容内容内容内容
内容内容内容内容内容内容内容
内容内容内容内容内容
内容内容内容内容内容
</details>

文字の記述

太字(**)
太字(__)
斜体(*)
斜体(_)
訂正線(~~)
link

これは引用です。

**太字(\*\*)**
__太字(\_\_)__
*斜体(\*)*
_斜体(\_)_
~~訂正線(\~~)~~
[link](http:/App.java)
> これは引用です。

※ Markdownで使用されている記号「*」などを表記させたい場合、
 「*」とバックスラッシュ入れると表示させれます。

コード

部分的のコード

これは code です

全体的なコード

使用ファイル:java
タイトル:タイトル
「```」で囲む

タイトル
  void hello()
  {
      console.log("Hello World!");
  }
## 部分的のコード
 これは `code` です

## 全体的なコード
使用ファイル:java
タイトル:タイトル
```java:タイトル
  void hello()
  {
      console.log("Hello World!");
  }

\```
↑「\」を削除して使用してください。

チェックボックス(checkBox)

  • これからやるタスク
  • 完了したタスク
- [ ] これからやるタスク
- [x] 完了したタスク

リスト

箇条書き(番号なし)

  • リスト[ - ]
  • リスト[ * ]
  • リスト[ + ]
    • a
    • a

箇条書き(番号あり)

  1. 番号リストA
  2. 番号リストB
    1. aaaa
  3. 番号リストC
## 箇条書き(番号なし)
- リスト[ - ]
* リスト[ * ]
+ リスト[ + ]
  + a
  + a

## 箇条書き(番号あり)
1. 番号リストA
1. 番号リストB
   1. aaaa
1. 番号リストC

画像添付

いらすとや

![いらすとや](https://1.bp.blogspot.com/-gARR6ehVBP8/UZB6YR-tXBI/AAAAAAAASCo/fZGPc8JEd6w/s800/search_mushimegane.png)


***
---
_ _ _

テーブル

header1 header2 header3
hoge fuga piyo
hoge piyo
「:---」... 左揃え
「:--:」... 中央揃え
「---:」... 右揃え
| header1 | header2 | header3 |
| :------ | :-----: | ------: |
| hoge    |  fuga   |    piyo |
| hoge    |         |    piyo |
2
0
2

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