Sha256: c465b4cc5ae5b074dec7d7b2df307184cb8ed7bbd973d9c807c5dd93f6906f96
Contents?: true
Size: 798 Bytes
Versions: 6
Compression:
Stored size: 798 Bytes
Contents
module Octokit class Client module Markdown # Receive the default Readme for a repository # # @param text [String] Markdown source # @option options [String] (optional) :mode (`markdown` or `gfm`) # @option options [String] (optional) :context Repo context # @return [String] HTML renderization # @see http://developer.github.com/v3/repos/markdown/ # @example Render some GFM # Octokit.markdown('Fixed in #111', :mode => "gfm", :context => "pengwynn/octokit") def markdown(text, options={}) options[:text] = text options[:repo] = Repository.new(options[:repo]) if options[:repo] options[:accept] = 'application/vnd.github.raw' request(:post, "markdown", options).body end end end end
Version data entries
6 entries across 6 versions & 1 rubygems