Sha256: 453f0055098a1709ac6c2e8515119bf986ce178a19a263f4e785ad1bf677ba5c

Contents?: true

Size: 873 Bytes

Versions: 4

Compression:

Stored size: 873 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/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'

        post "markdown", options
      end

    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
octokit-2.0.0.rc4 lib/octokit/client/markdown.rb
octokit-2.0.0.rc3 lib/octokit/client/markdown.rb
octokit-2.0.0.rc2 lib/octokit/client/markdown.rb
octokit-2.0.0.rc1 lib/octokit/client/markdown.rb