Skip to content

Instantly share code, notes, and snippets.

@higeknuckle
Created December 14, 2019 11:39
Show Gist options
  • Save higeknuckle/91e0818f8ad852ba43d3c20c7387db06 to your computer and use it in GitHub Desktop.
Save higeknuckle/91e0818f8ad852ba43d3c20c7387db06 to your computer and use it in GitHub Desktop.
Extended Syntax - Markdownチートシート

Extended Syntax

シンタックスハイライト

記法

```javascript
{
  "firstName": "John",
  "lastName": "Smith",
  "age": 25
}
```

表示結果

{
  "firstName": "John",
  "lastName": "Smith",
  "age": 25
}

タスクリスト

記法

- [x] Write the press release
- [ ] Update the website
- [ ] Contact the media

表示結果

  • Write the press release
  • Update the website
  • Contact the media

記法

Header1               | Header2                 | Header 3
:---                  | :---:                   |  ---:
Cell 1                | Cell 2 (Center aligned) | Cell 3
Cell 3 (Left aligned) | Cell 4                  | Cell 6 (Right aligned)

表示結果

Header1 Header2 Header 3
Cell 1 Cell 2 (Center aligned) Cell 3
Cell 3 (Left aligned) Cell 4 Cell 6 (Right aligned)

コミットSHAへのリンク

記法

16c999e8c71134401a78d4d46435517b2271d6ac
higeknuckle@16c999e8c71134401a78d4d46435517b2271d6ac
higeknuckle/markdown-cheatsheet@16c999e8c71134401a78d4d46435517b2271d6ac

表示結果

(IssuesおよびPull Requests限定の記法のため省略)

Issueへのリンク

記法

#1
higeknuckle#1
higeknuckle/markdown-cheatsheet#1

表示結果

(IssuesおよびPull Requests限定の記法のため省略)

@ユーザ名へのメンション

記法

@higeknuckle Any mention comment here.

表示結果

(IssuesおよびPull Requests限定の記法のため省略)

URLの自動リンク化

記法

https://www.example.com

表示結果

https://www.example.com

打ち消し線

記法

~~The world is flat.~~

表示結果

The world is flat.

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