Skip to content

Instantly share code, notes, and snippets.

@n01e0
Last active June 28, 2019 10:12
Show Gist options
  • Save n01e0/2ce300380a24ca32002dbfe121cda8d0 to your computer and use it in GitHub Desktop.
Save n01e0/2ce300380a24ca32002dbfe121cda8d0 to your computer and use it in GitHub Desktop.
mdめも

markdown書く時用の最低限のメモ

コード

`some code`

some code

になる

見出し

# h1,
## h2,
### h3,
#### h4,
##### h5,
###### h6,

h1

h2

h3

h4

h5
h6

になる。

斜体

*文字*

文字

になる

太字

**文字**

文字

になる

箇条書き

 - 初項
   - 第2項

 * 初項
   * 第2項

 + 初項
   + 第2項

各記号の後にスペースが必要なので注意

  • 初項
    • 第2項
  • 初項
    • 第2項
  • 初項
    • 第2項

番号付け

1. 初項  
1. 第2項

1でいい

  1. 初項
  2. 第2項

リンク

[text](https://github.com)
[infile](#リンク)

text infile

画像

![alt](img_url)

alt

その他

ここみて

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment