Sha256: 362c9b6aeedcba0f23df04859945fe4c5e3f8c66edb1d2d5d1b4a6d027fd2d71
Contents?: true
Size: 906 Bytes
Versions: 5
Compression:
Stored size: 906 Bytes
Contents
module Octokit class Client # Methods for the Markdown API # # @see http://developer.github.com/v3/markdown/ module Markdown # Render an arbitrary Markdown document # # @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/markdown/#render-an-arbitrary-markdown-document # @example Render some GFM # Octokit.markdown('Fixed in #111', :mode => "gfm", :context => "octokit/octokit.rb") def markdown(text, options = {}) options[:text] = text options[:repo] = Repository.new(options[:repo]) if options[:repo] options[:accept] = 'application/vnd.github.raw' post "markdown", options end end end end
Version data entries
5 entries across 5 versions & 1 rubygems