Sha256: ea8b65fbb28a2fa4d733c0b3b4dbc9789d883aff6c06037c00f942770cf4b433

Contents?: true

Size: 1.29 KB

Versions: 5

Compression:

Stored size: 1.29 KB

Contents

require 'kramdown'

module Middleman
  module Renderers
    # Our own Kramdown Tilt template that simply uses our custom renderer.
    class KramdownTemplate < ::Tilt::KramdownTemplate
      def evaluate(scope, *)
        @output ||= begin
          MiddlemanKramdownHTML.scope = ::Middleman::Renderers::Haml.last_haml_scope || scope

          output, warnings = MiddlemanKramdownHTML.convert(@engine.root, @engine.options)
          @engine.warnings.concat(warnings)
          output
        end
      end
    end

    # Custom Kramdown renderer that uses our helpers for images and links
    class MiddlemanKramdownHTML < ::Kramdown::Converter::Html
      cattr_accessor :scope

      def convert_img(el, _)
        attrs = el.attr.dup

        link = attrs.delete('src')
        scope.image_tag(link, attrs)
      end

      def convert_a(el, indent)
        content = inner(el, indent)

        if el.attr['href'] =~ /\Amailto:/
          mail_addr = el.attr['href'].sub(/\Amailto:/, '')
          href = obfuscate('mailto') << ':' << obfuscate(mail_addr)
          content = obfuscate(content) if content == mail_addr
          return %(<a href="#{href}">#{content}</a>)
        end

        attr = el.attr.dup
        link = attr.delete('href')
        scope.link_to(content, link, attr)
      end
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
middleman-core-4.0.0.alpha.6 lib/middleman-core/renderers/kramdown.rb
middleman-core-4.0.0.alpha.5 lib/middleman-core/renderers/kramdown.rb
middleman-core-4.0.0.alpha.4 lib/middleman-core/renderers/kramdown.rb
middleman-core-4.0.0.alpha.3 lib/middleman-core/renderers/kramdown.rb
middleman-core-4.0.0.alpha.2 lib/middleman-core/renderers/kramdown.rb