module Downr

Namespace for classes and modules that handle markdown parsing

Gem Version

Constants

VERSION

Attributes

configuration[RW]
markdown[RW]

Public Class Methods

configure() { |configuration| ... } click to toggle source

static method to define a Configuration object with the given initialized data

# File lib/downr.rb, line 27
def self.configure
  self.configuration ||= Configuration.new
  yield(configuration)

  self.markdown ||= Markdown.new
end