How to remove wrapper divs added via section tags in liquid?

If I include a section in my theme template via liquid tags as follows:

{% section 'header' %}

The resulting output wraps the code contained in the header section with a div:


     

I’d really like to remove the wrapper div for a few reasons - styling, semantic markup, removing excess markup for page size, etc. - but I haven’t found any way in the docs to filter this out. Any suggestions?

anyone?

Ended up finding the relevant info:

https://shopify.dev/themes/architecture/sections/section-schema#tag

Tag attribute allows modification of the container element.