method
find_attachment_gallery_nodes
v6.0.0 -
Show latest stable
- Class:
ActionText::AttachmentGallery
find_attachment_gallery_nodes(content)public
No documentation available.
# File actiontext/lib/action_text/attachment_gallery.rb, line 22
def find_attachment_gallery_nodes(content)
Fragment.wrap(content).find_all(SELECTOR).select do |node|
node.children.all? do |child|
if child.text?
child.text =~ /\A(\n|\ )*\z/
else
child.matches? ATTACHMENT_SELECTOR
end
end
end
end