ラベル Markdown の投稿を表示しています。 すべての投稿を表示
ラベル Markdown の投稿を表示しています。 すべての投稿を表示

Markdown記法

 

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/)

GitHub Pages.

●リスト


Disc型

* list1
+ list2
- list3
    * list3-1
        + list3-1-1
    - list3-2
  • list1
  • list2
  • list3
    • list3-1
      • list3-1-1
    • list3-2


Decimal型

1. list1
1. list2
1. list3
  1. list1
  2. list2
  3. 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
左寄せ中央揃え右寄せ改行
123445678901234456789012344567890foo
bar


厳選 Visual Studioの便利なショートカット

  エラー箇所にジャンプ 「Ctrl + Shift + F12」 ブレークポイント 設定/解除 「F9」 有効化/無効化 「Ctrl + F9」 ViEmu特有 「:ls」:バッファナンバーのリストを表示。 「:b2」:バッファ2のファイルを開く。 「:n」:次のバッファのファ...