lib/prawn_html/tags/del.rb
# frozen_string_literal: true module PrawnHtml module Tags class Del < Tag ELEMENTS = [:del, :s].freeze def tag_styles 'text-decoration: line-through' end end end end
# frozen_string_literal: true module PrawnHtml module Tags class Del < Tag ELEMENTS = [:del, :s].freeze def tag_styles 'text-decoration: line-through' end end end end