Skip to content

Instantly share code, notes, and snippets.

@higaki
Created July 12, 2012 09:30
Show Gist options
  • Save higaki/3097014 to your computer and use it in GitHub Desktop.
Save higaki/3097014 to your computer and use it in GitHub Desktop.
learn

markdown


h1

h2

h3

h4

h5
h6

class String
  def compact!
    strip!
    gsub! /\s+/, ' '
    self
  end
end

str.compact!


段落 1

段落 2 段落 2

段落 3


行1
行2 行2
行3


強調 強調
強調 強調


  1. a
  2. a
  3. b

これは

引用の

引用


README.mdファイル。マークダウン記法まとめ

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