method

indentation_for_li_node

rails latest stable - Class: ActionText::PlainTextConversion
indentation_for_li_node(node)
private

No documentation available.

# File actiontext/lib/action_text/plain_text_conversion.rb, line 93
      def indentation_for_li_node(node)
        depth = list_node_depth_for_node(node)
        if depth > 1
          "  " * (depth - 1)
        end
      end