Sha256: 1be138e4579badf95584f22f8c4bb9b4e1e4de5fbc0233a7a114e53ad84020fa
Contents?: true
Size: 402 Bytes
Versions: 38
Compression:
Stored size: 402 Bytes
Contents
module Blacklight module Rendering class Microdata < AbstractStep include ActionView::Helpers::TagHelper def render return next_step(values) unless config.itemprop next_step(values.map { |x| itemprop(x, config.itemprop) }) end private def itemprop(val, itemprop) content_tag :span, val, itemprop: itemprop end end end end
Version data entries
38 entries across 38 versions & 1 rubygems