Sha256: c3608034d8120d1c06666748d9116d527a06f33dc6ed78c6696a4e2c03aeed02
Contents?: true
Size: 748 Bytes
Versions: 4
Compression:
Stored size: 748 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] post("/markdown", options, 3, true, true).body end end end end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
octokit-1.9.4 | lib/octokit/client/markdown.rb |
octokit-1.9.3 | lib/octokit/client/markdown.rb |
octokit-1.9.2 | lib/octokit/client/markdown.rb |
octokit-1.9.1 | lib/octokit/client/markdown.rb |