Sha256: 0aae6589e5bc176731a7d78a63c8cf8fec9377fc3989a3c1bee2333a949e421a
Contents?: true
Size: 761 Bytes
Versions: 2
Compression:
Stored size: 761 Bytes
Contents
# -*- coding: utf-8 -*- # #-- # Copyright (C) 2009-2014 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 # RM autoload :Base, 'kramdown/parser/base' # RM autoload :Kramdown, 'kramdown/parser/kramdown' # RM autoload :Html, 'kramdown/parser/html' # RM autoload :Markdown, 'kramdown/parser/markdown' # RM autoload :GFM, 'kramdown/parser/gfm' end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
motion-kramdown-0.5.1 | lib/kramdown/parser.rb |
motion-kramdown-0.5.0 | lib/kramdown/parser.rb |