DIY Version 2.2 changes to HTML output
Before 2.2, the "Before Output" and "After Output" content would not be displayed consistently: the Before Output value would display inside the Container Tag, and the After Output would display outside the container tag.
Version 2.2 fixes that discrepancy.
Before 2.2:
<div id="gv_diy_9209" class="gv-diy-view">
<div class="gv-field-1-1">
<hr>Dan Dan
</div>
<hr>
</div>
After 2.2:
<div id="gv_diy_9209" class="gv-diy-view">
<hr>
<div class="gv-field-1-1">Dan Dan</div>
<hr>
</div>