Sha256: 59235f19d5bf3cddf5f86f21d22ca0a9d86175f1d70b2dda89d5a8a6f21dc0c4

Contents?: true

Size: 441 Bytes

Versions: 2

Compression:

Stored size: 441 Bytes

Contents

# encoding: utf-8
module Middleman
  module Presentation
    # Helpers plugin
    module Helpers
      # Highlight plugin
      module HighlightPlugin
        extend PluginApi

        loadable_files = [
          /.*\.js$/
        ]

        add_component(
          name: :highlightjs,
          version: 'latest',
          importable_files: %w(zenburn.css),
          loadable_files: loadable_files
        )
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
middleman-presentation-helpers-0.17.7 lib/middleman-presentation-helpers/plugins/highlight_plugin.rb
middleman-presentation-helpers-0.17.6 lib/middleman-presentation-helpers/plugins/highlight_plugin.rb