if you say that each line starting with a space is a continuation of the description of its simple with (g) awk (this is from my memory, so it may contain some minor typos and for better readability with some additional line breaks):
awk " BEGIN { multiline = 0;}
{ print; multiline = 1;}
else
multiline = 0;
}
/^ / {if (multiline == 1)
print;
}
"
yourfile
where whateveris your check if your exit should happen (for example, for a cat).