return child.children.reduce(
            (arr, obj) => {
              arr.push(`- ${(obj.content || "").concat(
                indent.concat(obj.plainChildren).replace(/\n/gm, "\n".concat(indent))
              )}`);