Sha256: c2fe5636dc7cd0b5754ce2c2cb31ce7b06a810216ce6fa03a090553111771223
Contents?: true
Size: 557 Bytes
Versions: 17
Compression:
Stored size: 557 Bytes
Contents
# frozen_string_literal: true module Blacklight module Rendering class Join < AbstractStep def render options = config.separator_options || {} if values.one? || values.none? next_step(values.first) elsif !html? next_step(values.to_sentence(options)) else next_step(values.map { |x| x.html_safe? ? x : html_escape(x) }.to_sentence(options).html_safe) end end private def html_escape(*args) ERB::Util.html_escape(*args) end end end end
Version data entries
17 entries across 17 versions & 2 rubygems