このエントリーをはてなブックマークに追加

RDiscount

Railsで使用する場合は、アプリホーム/Gemfileに以下を記述。

gem 'rdiscount'

bundle installを実行するとgemがインストールされます。

あとは、Rdiscountのインスタンスを作成して、to_htmlメソッドを適用するだけでマークダウンをhtmlに変換してくれます。

markdown = RDiscount.new("Hello World!")
puts markdown.to_html
 => <p>Hello World!</p>

  • インプリメンテーション (rdiscount)


記事一覧へ