lib/prawn_html/tags/mark.rb



# frozen_string_literal: true

module PrawnHtml
  module Tags
    class Mark < Tag
      ELEMENTS = [:mark].freeze

      def tag_styles
        'background: #ff0'
      end
    end
  end
end