Markdown記法をまとめてみました。
# 見出し1
## 見出し2
### 見出し3
見出し1
見出し2
見出し3
●テキストスタイル
・太字
normal **bold** normal
normal __bold__ normal
normal bold normal
normal bold normal
・斜字
normal *italic* normal
normal _italic_ normal
normal italic normal
normal italic normal
・取消し線
normal ~~strikethrough~~ normal
normal strikethrough normal
・太字 and 斜字
**bold *italic* bold**
bold italic bold
●インデント
> hoge
>> foo
>>> bar
hoge
foo
bar
●コード
Gitコマンド
``` git status git add git commit ```
git status
git add
git commit
●リンク
[GitHub Pages.](https://pages.github.com/)
●リスト
Disc型
* list1
+ list2
- list3
* list3-1
+ list3-1-1
- list3-2
- list1
- list2
- list3
- list3-1
- list3-1-1
- list3-2
- list3-1
Decimal型
1. list1
1. list2
1. list3
- list1
- list2
- list3
Definition型
<dl>
<dt>タイトル1</dt>
<dd>内容</dd>
<dt>タイトル2</dt>
<dd>内容</dd>
</dl>
- タイトル1
- 内容
- タイトル2
- 内容
●タスクリスト
- [x] task1
- [ ] task2
- [ ] task3
●水平線
---
***
___
●テーブル
|ヘッダ1|ヘッダ2|ヘッダ3|ヘッダ4|
|---|:---:|---:|---|
|左寄せ|中央揃え|右寄せ|改行|
|12344567890|12344567890|12344567890|foo<br/>bar|
ヘッダ1 | ヘッダ2 | ヘッダ3 | ヘッダ4 |
---|---|---|---|
左寄せ | 中央揃え | 右寄せ | 改行 |
12344567890 | 12344567890 | 12344567890 | foo bar |
0 件のコメント:
コメントを投稿