method
break_if_nested_list
rails latest stable - Class:
ActionText::PlainTextConversion
break_if_nested_list(node, text)private
No documentation available.
# File actiontext/lib/action_text/plain_text_conversion.rb, line 104
def break_if_nested_list(node, text)
if list_node_depth_for_node(node) > 0
"\n#{text}"
else
text
end
end