Hmm alright thanks guys.
One last question, I didn't want to create another question since I have a page here anyways. I'm using a univiewer with a hierarchical transformation.
I have a custom page type that I've defined and inside that page type I've created Item transformation and header/footer transformations. I'm using those transformations inside a hierarchical transformation.
When my HTML gets rendered, I get lots of duplicate html that I don't need for example I got a layout like this where I just have bunch of rows and inside those rows, I have columns:
<div class="row">
<div class="small-12 medium-3 columns">stuff</div>
<div class="small-12 medium-3 columns">stuff</div>
</div>
<div class="row">
// more columns and content
</div>
<div class="row">
// empty content there's nothing inside the row but it gets rendered anyways
</div>
<div class="row">
// same thing as above
</div>
<div class="row">
// same thing as above
</div>
I would have HTML rendered for things that actually have content but then I'd have a bunch of div tags that are being rendered without any content in them, so they're kind of duplicates that I don't need. Any reason as to why it's rendering like that? I would assume it would only render tags with actual content in them not tags that are empty.