Sha256: 59ef563a6585490c5cced87acb36e308eae053fc45edb830f37204fbd36a501b

Contents?: true

Size: 486 Bytes

Versions: 14

Compression:

Stored size: 486 Bytes

Contents

# frozen_string_literal: true

module Stepmod
  module Utils
    module Converters
      class Head < Stepmod::Utils::Converters::Base
        def convert(node, _state = {})
          title = extract_title(node)
          "= #{title}\n:stem:\n\n"
        end

        def extract_title(node)
          title = node.at("./title")
          return "(???)" if title.nil?

          title.text
        end
      end

      ReverseAdoc::Converters.register :head, Head.new
    end
  end
end

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
stepmod-utils-0.6.7 lib/stepmod/utils/converters/head.rb
stepmod-utils-0.6.6 lib/stepmod/utils/converters/head.rb
stepmod-utils-0.6.5 lib/stepmod/utils/converters/head.rb
stepmod-utils-0.6.3 lib/stepmod/utils/converters/head.rb
stepmod-utils-0.6.2 lib/stepmod/utils/converters/head.rb
stepmod-utils-0.6.1 lib/stepmod/utils/converters/head.rb
stepmod-utils-0.6.0 lib/stepmod/utils/converters/head.rb
stepmod-utils-0.5.0 lib/stepmod/utils/converters/head.rb
stepmod-utils-0.4.14 lib/stepmod/utils/converters/head.rb
stepmod-utils-0.4.13 lib/stepmod/utils/converters/head.rb
stepmod-utils-0.4.12 lib/stepmod/utils/converters/head.rb
stepmod-utils-0.4.11 lib/stepmod/utils/converters/head.rb
stepmod-utils-0.4.10 lib/stepmod/utils/converters/head.rb
stepmod-utils-0.4.9 lib/stepmod/utils/converters/head.rb