Skip to content

Instantly share code, notes, and snippets.

@oooooooo
Last active October 30, 2018 04:09
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save oooooooo/7702368 to your computer and use it in GitHub Desktop.
Save oooooooo/7702368 to your computer and use it in GitHub Desktop.
Markdown

目次

Markdown

書きやすくて、読みやすいフォーマット。

書き方はこちら。

とりあえず 5 つでできる Markdown

ここの文章はこれだけでできてます。

  • 見出し ( # と ## と ### で )
  • 箇条書き ( * で )
  • シェルへの入力と出力は頭にスペース 4 個
  • コード整形 ( でくくる。perl とすればコードハイライト )
  • URL のリンクはタイトルを [ と ] でくくり、URL は ( と ) でくくる
# サンプル

    $ input sample
    output sample

```perl
print "Hello, world" if $str =~ /bingo/
```

* いぬ
* ねこ

[Google](http://www.google.com/)

Markdown の使えるブログ

特に理由がなければ、はてなブログを推奨。

  • はてなブログ
  • tumblr
  • gist
  • Qiita
  • WordPress
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment