Sha256: b0bb8e59d8a9e05631592d7d8e775717f6c6c241cd372bf367df28842ab722b6

Contents?: true

Size: 809 Bytes

Versions: 1

Compression:

Stored size: 809 Bytes

Contents

module MaRuKu
  # The Maruku version.
  VERSION = '0.7.3'

  # @deprecated Exists for backwards compatibility. Use {VERSION}
  # @private
  Version = VERSION

  # The URL of the Maruku website.
  MARUKU_URL = 'http://github.com/bhollis/maruku/'

  # @deprecated Exists for backwards compatibility. Use {MARUKU_URL}
  # @private
  MarukuURL = MARUKU_URL

  # Whether Markdown implements the PHP Markdown extra syntax.
  #
  # Note: it is not guaranteed that if this is false,
  # then no special features will be used.
  #
  # @return [Boolean]
  def markdown_extra?
    true
  end

  # Whether Markdown implements the new meta-data proposal.
  #
  # Note: it is not guaranteed that if this is false,
  # then no special features will be used.
  #
  # @return [Boolean]
  def new_meta_data?
    true
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
maruku-0.7.3 lib/maruku/version.rb