method
fragment_by_replacing_attachment_gallery_nodes
v7.2.3 -
Show latest stable
- Class:
ActionText::AttachmentGallery
fragment_by_replacing_attachment_gallery_nodes(content)public
No documentation available.
# File actiontext/lib/action_text/attachment_gallery.rb, line 19
def fragment_by_replacing_attachment_gallery_nodes(content)
Fragment.wrap(content).update do |source|
find_attachment_gallery_nodes(source).each do |node|
node.replace(yield(node).to_s)
end
end
end