This might be out of scope for the project, but it would really save heartache in my very specific case:
I want to be able to wrap <table> elements in a <div> so I can add overflow-x so tables can properly scroll horizontally, instead of just grossly overflowing the section or body containing it. (Adding the overflow directly to the table element doesn't work, thanks spec). I guess instead of children, it'd be parent and work in sort of the same way?
I suppose another solution, for my specific case, would add a "wrapper" functionality to just the table processor.
This might be out of scope for the project, but it would really save heartache in my very specific case:
I want to be able to wrap
<table>elements in a<div>so I can addoverflow-xso tables can properly scroll horizontally, instead of just grossly overflowing the section or body containing it. (Adding the overflow directly to the table element doesn't work, thanks spec). I guess instead ofchildren, it'd beparentand work in sort of the same way?I suppose another solution, for my specific case, would add a "wrapper" functionality to just the table processor.