X PACK Report Formatting 5.5.2 Issues

I'm having issues exporting some visualizations that use my custom plugins.

The export generates and extra blank section and I can't seem to figure out how to remove it.

Here's my html

<div data-shared-item render-counter="1" data-title="Subject" data-description="Summary from Wikipedia" >
 <div ng-controller="WikiController" title="Wiki Summary" description="Subject description from Wikipedia">
 <h1>{{title}}</h1>
 <p ng-bind-html="summary"></p>
 <p><a href={{link}}>{{link}}</a></p>
 </div>
</div>

I want it to only show up in one section.

Let me know if you need any more information.

I solved it. This worked.

<div ng-controller="WikiController">
<h1>{{title}}</h1>
<p ng-bind-html="summary"></p>
<p><a href={{link}}>{{link}}</a></p>
</div>

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.