My page has the article summary and content in separate elements, I would need to show both in the instant article, but without changing the HTML structure of the page.
https://developers.facebook.com/docs/instant-articles/builder
<div class="summary-news">
<div class="summary-content">
<h3>Summary</h3>
<ul>
<li> Item 1</li>
<li> Item 2</li>
<li> ... </li>
</ul>
</div>
</div>
<div>
<!-- Other content -->
</div>
<div class="text">
<!-- Main content -->
</div>
You can change the GlobalRule into your settings to be specific to any wrapper tag of this full page.
Lets say that you have a
<body>tag around your structure:Then you just need to change your
article.bodyproperty from yourGlobalRulesettings to get this wrapper container:This should do the trick for your need.