Sha256: 46f03bd27e022bb20d58832f1a5fccd1e11b4703d082ff1f31cebca171f5d8b6

Contents?: true

Size: 695 Bytes

Versions: 4

Compression:

Stored size: 695 Bytes

Contents

# -*- coding: utf-8 -*-
#
#--
# Copyright (C) 2009-2013 Thomas Leitner <t_leitner@gmx.at>
#
# This file is part of kramdown which is licensed under the MIT.
#++
#

module Kramdown

  # This module contains all available parsers. A parser takes an input string and converts the
  # string to an element tree.
  #
  # New parsers should be derived from the Base class which provides common functionality - see its
  # API documentation for how to create a custom converter class.
  module Parser

    autoload :Base, 'kramdown/parser/base'
    autoload :Kramdown, 'kramdown/parser/kramdown'
    autoload :Html, 'kramdown/parser/html'
    autoload :Markdown, 'kramdown/parser/markdown'

  end

end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
kramdown-1.1.0 lib/kramdown/parser.rb
kramdown-1.0.2 lib/kramdown/parser.rb
kramdown-1.0.1 lib/kramdown/parser.rb
kramdown-1.0.0 lib/kramdown/parser.rb