Is it possible to split a RenderFragment into a list of RenderFragments seperated by the parent nodes?
Lets say I have a RenderFragement (without parameters) like this:
<label><InputText /></label> <button /> <label><InputNumber /></label>
and the list should look like this:
at index 0 <label><InputText /></label>
at index 1 <button />
at index 2 <label><InputNumber /></label>
I tried parsing the RenderFragment into strings or MarkupStrings so that I can split that, but that did not work unfortunately.