module ActionText::PlainTextConversion

def plain_text_for_node_children(node)

def plain_text_for_node_children(node)
  texts = []
  node.children.each_with_index do |child, index|
    texts << plain_text_for_node(child, index)
  end
  texts.join
end