This class serves as base class for all converters. It provides methods that can/should be used by all converters (like generate_id) as well as common functionality that is automatically applied to the result (for example, embedding the output into a template).
A converter object is used as a throw-away object, i.e. it is only used for storing the needed state information during conversion. Therefore one can’t instantiate a converter object directly but only use the ::convert method.
Implementing a new converter is rather easy: just derive a new class from this class and put it in the Kramdown::Converter module (the latter is only needed if auto-detection should work properly). Then you need to implement the convert method which has to contain the conversion code for converting an element and has to return the conversion result.
The actual transformation of the document tree can be done in any way. However, writing one method per element type is a straight forward way to do it - this is how the Html and Latex converters do the transformation.
Have a look at the ::convert method for additional information!
Can be used by a converter for storing arbitrary information during the conversion process.
The hash with the conversion options.
The root element that is converted.
The warnings array.
Convert the element tree tree and return the resulting
conversion object (normally a string) and an array with warning messages.
The parameter options specifies the conversion options that
should be used.
Initializes a new instance of the calling class and then calls the convert method with tree
as parameter. If the template option is specified and
non-empty, the result is rendered into the specified template. The template
resolution is done in the following way:
Look in the current working directory for the template.
Append .convertername (e.g. .html) to the
template name and look for the resulting file in the current working
directory.
Append .convertername to the template name and look for it in
the kramdown data directory.
# File lib/kramdown/converter/base.rb, line 76 def self.convert(tree, options = {}) converter = new(tree, ::Kramdown::Options.merge(options.merge(tree.options[:options] || {}))) result = converter.convert(tree) result = apply_template(converter, result) if !converter.options[:template].empty? result.encode!(tree.options[:encoding]) if result.respond_to?(:encode!) [result, converter.warnings] end
Convert the element el and return the resulting object.
This is the only method that has to be implemented by sub-classes!
# File lib/kramdown/converter/base.rb, line 87 def convert(el) raise NotImplementedError end
Extract the code block/span language from the attributes.
# File lib/kramdown/converter/base.rb, line 134 def extract_code_language(attr) if attr['class'] && attr['class'] =~ /\blanguage-\w+\b/ attr['class'].scan(/\blanguage-(\w+)\b/).first.first end end
Warning: This version will modify the given attributes if a language is present.
# File lib/kramdown/converter/base.rb, line 143 def extract_code_language!(attr) lang = extract_code_language(attr) attr['class'] = attr['class'].sub(/\blanguage-\w+\b/, '').strip if lang attr.delete('class') if lang && attr['class'].empty? lang end
Generate an unique alpha-numeric ID from the the string str
for use as a header ID.
Uses the option auto_id_prefix: the value of this option is
prepended to every generated ID.
# File lib/kramdown/converter/base.rb, line 154 def generate_id(str) str = ::Kramdown::Utils::Unidecoder.decode(str) if @options[:transliterated_header_ids] gen_id = str.gsub(/^[^a-zA-Z]+/, '') gen_id.tr!('^a-zA-Z0-9 -', '') gen_id.tr!(' ', '-') gen_id.downcase! gen_id = 'section' if gen_id.length == 0 @used_ids ||= {} if @used_ids.has_key?(gen_id) gen_id += '-' << (@used_ids[gen_id] += 1).to_s else @used_ids[gen_id] = 0 end @options[:auto_id_prefix] + gen_id end
Return true if the header element el should be
used for the table of contents (as specified by the toc_levels
option).
# File lib/kramdown/converter/base.rb, line 122 def in_toc?(el) @options[:toc_levels].include?(el.options[:level]) and ((not el.attr['class'].split.include?('no_toc')) rescue true) end
Return the output header level given a level.
Uses the header_offset option for adjusting the header level.
# File lib/kramdown/converter/base.rb, line 129 def output_header_level(level) [[level + @options[:header_offset], 6].min, 1].max end
Return the entity that represents the given smart_quote element.
# File lib/kramdown/converter/base.rb, line 173 def smart_quote_entity(el) res = @options[:smart_quotes][SMART_QUOTE_INDICES[el.value]] ::Kramdown::Utils::Entities.entity(res) end
Add the given warning text to the warning array.
# File lib/kramdown/converter/base.rb, line 116 def warning(text) @warnings << text end